Skip to content

Animation

Animation tools work from the filesystem, no addon required.

Animation data for any node: tracks, keyframes, length, looping, state machine transitions.

ParameterTypeDefaultDescription
pathstringrequiredPath to animation resource or scene with AnimationPlayer
detailstring"normal"Output verbosity: "brief", "normal", "full"
Tool call
{
"tool": "godotiq_animation_info",
"args": { "path": "res://scenes/characters/player.tscn" }
}

Find animation problems: broken tracks, missing transitions, wrong loop settings, unreferenced animations.

ParameterTypeDefaultDescription
pathstring"res://"Path to scan (file or directory)
checksarray["all"]Specific checks: "broken_tracks", "missing_transitions", "loop_settings", "unused_animations"
detailstring"normal"Output verbosity
Tool call
{
"tool": "godotiq_animation_audit",
"args": { "path": "res://scenes/characters/", "checks": ["broken_tracks"] }
}