cosmic/scripts/State Machine/state.gd

20 lines
223 B
GDScript

extends Node
class_name State
var tree : StateTree
func enter(_message : Dictionary):
pass
func exit():
pass
func process(_delta):
pass
func physics_process(_delta):
pass
func input(_message : Dictionary):
pass