first commit

This commit is contained in:
2026-07-20 22:48:58 +07:00
commit e80aea750e
599 changed files with 2375815 additions and 0 deletions
@@ -0,0 +1,21 @@
extends Node
class_name State
signal transitioned
func enter(_charReference : CharacterBody3D):
#enter state
pass
func exit():
#exit state
pass
func update(_delta : float):
#process update
pass
func physics_update(_delta : float):
#physics_process update
pass