| 104 | } |
| 105 | |
| 106 | static void OutputSkin(Skin* skin, int indent) |
| 107 | { |
| 108 | OutputIndent(indent); |
| 109 | printf("Skin name: %s\n", skin->m_Name); |
| 110 | |
| 111 | printf(" Bones: count: %u\n", skin->m_Bones.Size()); |
| 112 | for (uint32_t i = 0; i < skin->m_Bones.Size(); ++i) |
| 113 | { |
| 114 | OutputBone(i, &skin->m_Bones[i], indent+1); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | static void OutputNode(Node* node) |
| 119 | { |
no test coverage detected