Added player and a basic test level
This commit is contained in:
19
utilities/state_machine/node_state.gd
Normal file
19
utilities/state_machine/node_state.gd
Normal file
@@ -0,0 +1,19 @@
|
||||
class_name NodeState
|
||||
extends Node
|
||||
|
||||
@warning_ignore("unused_signal")
|
||||
signal transition
|
||||
|
||||
@warning_ignore("unused_parameter")
|
||||
func on_process(delta: float) -> void:
|
||||
pass
|
||||
|
||||
@warning_ignore("unused_parameter")
|
||||
func on_phyisics_process(delta: float) -> void:
|
||||
pass
|
||||
|
||||
func enter() -> void:
|
||||
pass
|
||||
|
||||
func exit() -> void:
|
||||
pass
|
||||
Reference in New Issue
Block a user