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 e2a4e3997e - Show all commits
+1 -1
View File
@@ -81,7 +81,7 @@ func load_model(path: String) -> void:
print("SkinnedPlayerModel: %d animations available:" % anim_list.size()) print("SkinnedPlayerModel: %d animations available:" % anim_list.size())
for anim_name in anim_list: for anim_name in anim_list:
var a = animation_player.get_animation(anim_name) var a = animation_player.get_animation(anim_name)
print(" - %s (%.2fs, loop=%s)" % [anim_name, a.length, a.mode]) print(" - %s (%.2fs, loop=%s)" % [anim_name, a.length, a.loop_mode])
# Auto-play idle # Auto-play idle
if animation_player.has_animation("idle"): if animation_player.has_animation("idle"):
animation_player.play("idle") animation_player.play("idle")