| 185 | } |
| 186 | |
| 187 | int32 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 | |
| 197 | int32 SkeletonData::FindBone(int32 nodeIndex) const |
| 198 | { |
no test coverage detected