Feat/14 movement overhaul #20

Merged
Dotts merged 86 commits from feat/14-movement-overhaul into main 2026-07-17 10:44:23 -07:00
Showing only changes of commit d6df49844e - Show all commits
+2 -2
View File
@@ -409,8 +409,8 @@ func _jump_offset(bone_name: String, time: float) -> Vector3:
var cycle: float = 0.83
var t: float = fmod(time, cycle) / cycle
var phase: float = t * 6.28318
# Brief jump pose: arms raised, knees bent at peak (t=0.5)
var peak := 1.0 - abs(t - 0.5) * 2.0 # 0 at edges, 1 at middle
# Jump pose: arms raised, knees bent, brief hop
var peak: float = 1.0 - abs(t - 0.5) * 2.0
peak = clamp(peak, 0.0, 1.0)
match bone_name:
"LeftUpperArm":