This commit is contained in:
2025-07-31 18:00:00 -07:00
parent 2be97ea27c
commit 15f11fc0f3
22 changed files with 725 additions and 516 deletions

View File

@@ -19,6 +19,7 @@ func _init(character_node: Node2D, target: Vector2, move_speed: float = 100.0) -
name = "MoveAction"
func start() -> void:
print("started", character)
if character == null:
self._set_failed("Character is null")
return
@@ -29,6 +30,7 @@ func start() -> void:
self._set_running()
func update(delta: float) -> void:
print ("updating")
if state != State.RUNNING:
return