MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / FindNode

Method FindNode

Source/Engine/Graphics/Models/SkinnedMesh.cpp:187–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187int32 SkeletonData::FindNode(const StringView& name) const
188{
189 for (int32 i = 0; i < Nodes.Count(); i++)
190 {
191 if (Nodes[i].Name == name)
192 return i;
193 }
194 return -1;
195}
196
197int32 SkeletonData::FindBone(int32 nodeIndex) const
198{

Callers 7

GetSkeletonMappingMethod · 0.45
FindNodeFunction · 0.45
onNodeLoadedMethod · 0.45
UpdateTransformationMethod · 0.45
GetNodeTransformationMethod · 0.45
SetNodeTransformationMethod · 0.45
InitBoneMethod · 0.45

Calls 1

CountMethod · 0.45

Tested by

no test coverage detected