feat: update

This commit is contained in:
2026-06-12 18:05:04 +08:00
parent 8a2fb36a98
commit 9dd3c59edf
67 changed files with 2298 additions and 74 deletions
+12
View File
@@ -0,0 +1,12 @@
extends SceneTree
func _init() -> void:
var lib = load("res://assets/characters/animations/animation-pack.res") as AnimationLibrary
var anim = lib.get_animation("walk_forward")
print("=== walk_forward tracks ===")
for i in anim.get_track_count():
var type = anim.track_get_type(i)
var path = anim.track_get_path(i)
var type_str = ["VALUE","POSITION","ROTATION","SCALE"][type]
print(" [%d] type=%s path=%s" % [i, type_str, path])
quit()