feat: implement modular movement state machine and ground, air, and wall climb states

This commit is contained in:
DottsGit
2026-06-10 22:27:10 -04:00
parent 18ab9da4a3
commit 3dc7fda622
4 changed files with 21 additions and 14 deletions
+1
View File
@@ -46,6 +46,7 @@ var original_capsule_height: float = 1.8
var slide_cooldown_timer: float = 0.0 # Prevents instant slide re-entry
var wall_cooldown_timer: float = 0.0 # Prevents instant re-attachment after wall jump
var is_crouched: bool = false
var can_wall_climb: bool = true
func _ready() -> void: