Files
tgcc/core/ai/ai_base/state.gd
2026-04-11 18:40:28 +02:00

20 lines
251 B
GDScript

extends Node
class_name State
@export var state_id: String = ""
signal transitioned(state, new_state_name)
func enter() -> void:
pass
func exit() -> void:
pass
func update(_delta) -> void:
pass
func physics_update(_delta) -> void:
pass