| 434 | } |
| 435 | |
| 436 | bool Tr2GrannyAnimation::HasMeshBinding() const |
| 437 | { |
| 438 | if( IsUsingCMF() ) |
| 439 | { |
| 440 | return !m_skeletonBoneIndices.empty(); |
| 441 | } |
| 442 | #if WITH_GRANNY |
| 443 | else |
| 444 | { |
| 445 | return m_meshBinding != nullptr; |
| 446 | } |
| 447 | #else |
| 448 | else |
| 449 | { |
| 450 | return false; |
| 451 | } |
| 452 | #endif |
| 453 | } |
| 454 | |
| 455 | const std::pair<const int32_t*, size_t> Tr2GrannyAnimation::GetMeshBindingIndices() const |
| 456 | { |
no test coverage detected