| 261 | } |
| 262 | |
| 263 | S32 TSShape::findSequence(S32 nameIndex) const |
| 264 | { |
| 265 | for (S32 i=0; i<sequences.size(); i++) |
| 266 | if (sequences[i].nameIndex==nameIndex) |
| 267 | return i; |
| 268 | return -1; |
| 269 | } |
| 270 | |
| 271 | bool TSShape::findMeshIndex(const String& meshName, S32& objIndex, S32& meshIndex) |
| 272 | { |
no test coverage detected