Bee State Machine
This commit is contained in:
parent
20bcab01b1
commit
752131c955
16 changed files with 467 additions and 13 deletions
15
entities/scripts/state.gd
Normal file
15
entities/scripts/state.gd
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue