Bee State Machine

This commit is contained in:
Dan 2024-05-03 15:43:05 +01:00
parent 20bcab01b1
commit 752131c955
16 changed files with 467 additions and 13 deletions

15
entities/scripts/state.gd Normal file
View file

@ -0,0 +1,15 @@
@icon("res://resources/icons/fsm.png")
extends Node
class_name State
signal state_transition
func enter(_msg := {}):
pass
func exit():
pass
func update(_delta:float):
pass