| 464 | } |
| 465 | |
| 466 | static 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 | |
| 478 | void DebugScene(Scene* scene) |
| 479 | { |
no test coverage detected