2024-08-29 22:35:31 +01:00

17 lines
229 B
GDScript

class_name State
extends Node
signal transition(new_state_name: StringName)
func enter() -> void:
pass
func exit() -> void:
pass
func update(_delta: float) -> void:
pass
func physics_update(_delta: float) -> void:
pass