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 03e2c29fa5 - Show all commits
+3 -1
View File
@@ -401,7 +401,9 @@ func _process(delta: float) -> void:
if animation_player.has_animation(target_anim): if animation_player.has_animation(target_anim):
animation_player.play(target_anim) animation_player.play(target_anim)
# Debug output # Force the skeleton to update bone transforms for rendering
if skeleton:
skeleton.update_skeleton()
_anim_debug_timer += delta _anim_debug_timer += delta
if _anim_debug_timer > 2.0: if _anim_debug_timer > 2.0:
_anim_debug_timer = 0.0 _anim_debug_timer = 0.0