From 31158b49cb799d96eac4110f89e64ed28b5edc66 Mon Sep 17 00:00:00 2001 From: Nitwel Date: Sat, 27 Jan 2024 17:40:35 +0100 Subject: [PATCH] fix entity position --- content/system/house/house.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/content/system/house/house.gd b/content/system/house/house.gd index 36678c2..ab335a6 100644 --- a/content/system/house/house.gd +++ b/content/system/house/house.gd @@ -43,6 +43,7 @@ func update_house(): if entity_instance == null: continue + entity_instance.global_position = entity.position entity_instance.global_rotation = entity.rotation func create_room(room_name: String, level: int) -> RoomType: