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

Function OutputSkin

engine/modelc/src/modelimporter_debug.cpp:106–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104}
105
106static 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
118static void OutputNode(Node* node)
119{

Callers 1

DebugSceneFunction · 0.85

Calls 3

OutputIndentFunction · 0.85
OutputBoneFunction · 0.85
SizeMethod · 0.45

Tested by

no test coverage detected