точно есть дэшм

This commit is contained in:
2026-07-21 00:27:17 +07:00
parent 1df926f1d8
commit d74fa3bd80
601 changed files with 2375919 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