MCPcopy Create free account
hub / github.com/defold/defold / OutputAnimation

Function OutputAnimation

engine/modelc/src/modelimporter_debug.cpp:466–476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

464}
465
466static void OutputAnimation(Animation* animation, int indent)
467{
468 OutputIndent(indent);
469 printf("%s duration: %f\n", animation->m_Name, animation->m_Duration);
470
471 for (uint32_t i = 0; i < animation->m_NodeAnimations.Size(); ++i)
472 {
473 NodeAnimation* node_animation = &animation->m_NodeAnimations[i];
474 OutputNodeAnimation(node_animation, indent+1);
475 }
476}
477
478void DebugScene(Scene* scene)
479{

Callers 1

DebugSceneFunction · 0.85

Calls 3

OutputIndentFunction · 0.85
OutputNodeAnimationFunction · 0.85
SizeMethod · 0.45

Tested by

no test coverage detected