add base system

This commit is contained in:
2026-04-11 18:40:28 +02:00
parent ecaa3704d7
commit adaa9eda98
35 changed files with 689 additions and 0 deletions

19
core/ai/ai_base/state.gd Normal file
View File

@@ -0,0 +1,19 @@
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