Camera system YAY!!!

This commit is contained in:
2026-03-27 10:35:03 -07:00
parent a04d7699ae
commit 7ba95c5949
15 changed files with 281 additions and 53 deletions

View File

@@ -1,6 +1,8 @@
class_name npcConstruct
extends cCharacter
var defaultRoom = 0
signal location_changed(ai, old_location, new_location)
signal state_changed(ai, old_state, new_state)
@@ -15,6 +17,8 @@ func advance_state() -> void:
func _ready():
super._ready()
print("Construct Ready")
Global.game.night.hour_changed.connect(_on_hour_changed)
func _on_hour_changed(hour: int):