ft: predator mostly done

This commit is contained in:
2026-02-06 12:43:37 +01:00
parent 5f9a2fffb9
commit 8ee70854ea
16 changed files with 271 additions and 30 deletions

View File

@@ -40,3 +40,9 @@ func _transition_to_next_state(target_path: String, data: Dictionary = {}) -> vo
func transition_to_next_state(target: int, data: Dictionary = {}) -> void:
push_error("Child FSM failed to implement transition function.")
# maps child node name to States enum
# requires the recursive stap as push_error does not count as a valid return value.
func map(state: Node) -> int:
push_error("Child FSM failed to implement map function.")
return -1