added player Finite State Machine

This commit is contained in:
2025-07-19 22:08:07 +10:00
parent 4a26cf0ddb
commit d2dc74d533
39 changed files with 496 additions and 376 deletions

View File

@@ -32,7 +32,7 @@ func _process(delta: float) -> void:
targets = target_list
for x: int in target_icons.size():
if x < targets.size():
target_icons[x].global_position = targets[x].sprite.global_position
target_icons[x].global_position = targets[x].d_n.global_position
target_icons[x].set_visible(true)
else:
target_icons[x].set_visible(false)