feat: implement modular state-based player movement system with chain mechanics

This commit is contained in:
DottsGit
2026-06-04 10:26:18 -04:00
parent cb04df1df3
commit a86ef53622
6 changed files with 2 additions and 11 deletions
+1 -3
View File
@@ -2,8 +2,7 @@ extends Resource
class_name MovementParams
# ── Ground ────────────────────────────────────────────────────────────────────
@export var walk_speed: float = 7.0
@export var sprint_speed: float = 11.0
@export var walk_speed: float = 11.0
@export var crouch_speed: float = 4.0
@export var ground_friction: float = 10.0
@export var ground_acceleration: float = 50.0
@@ -82,7 +81,6 @@ class_name MovementParams
# ── Camera ────────────────────────────────────────────────────────────────────
@export var mouse_sensitivity: float = 0.002
@export var base_fov: float = 90.0
@export var sprint_fov: float = 100.0
@export var dash_fov: float = 110.0
@export var fov_lerp_speed: float = 10.0
@export var head_bob_frequency: float = 12.0