jump ani fixing and transition animations

This commit is contained in:
Nicholas Butzke
2026-08-10 12:50:00 -04:00
parent 833e936bcd
commit 0ce626ad42
13 changed files with 359 additions and 35 deletions
+4 -1
View File
@@ -6,7 +6,10 @@ class_name MovementParams
@export var crouch_speed: float = 4.5
@export var ground_friction: float = 10.0
@export var ground_acceleration: float = 60.0
@export var ground_deceleration: float = 45.0
# Releasing movement carries roughly one metre of momentum from full speed.
# The old 45/s response erased half the velocity in a single rendered frame,
# leaving no physical time for an authored stopping step to read.
@export var ground_deceleration: float = 9.0
# ── Jump / Air ────────────────────────────────────────────────────────────────
@export var jump_velocity: float = 8.5