added project with nerabochie cows
This commit is contained in:
25
scripts/state_machine/node_state.gd
Normal file
25
scripts/state_machine/node_state.gd
Normal file
@ -0,0 +1,25 @@
|
||||
class_name NodeState
|
||||
extends Node
|
||||
|
||||
@warning_ignore("unused_signal")
|
||||
signal transition
|
||||
|
||||
|
||||
func _on_process(_delta : float) -> void:
|
||||
pass
|
||||
|
||||
|
||||
func _on_physics_process(_delta : float) -> void:
|
||||
pass
|
||||
|
||||
|
||||
func _on_next_transitions() -> void:
|
||||
pass
|
||||
|
||||
|
||||
func _on_enter() -> void:
|
||||
pass
|
||||
|
||||
|
||||
func _on_exit() -> void:
|
||||
pass
|
Reference in New Issue
Block a user