| 1408 | #endif |
| 1409 | |
| 1410 | const cmf::Skeleton* Tr2GrannyAnimation::GetSkeleton() const |
| 1411 | { |
| 1412 | CCP_ASSERT( IsUsingCMF() ); |
| 1413 | |
| 1414 | auto cmfData = GetCMFData(); |
| 1415 | if( cmfData && m_modelIndex >= 0 && m_modelIndex < cmfData->skeletons.size() ) |
| 1416 | { |
| 1417 | return &cmfData->skeletons[m_modelIndex]; |
| 1418 | } |
| 1419 | return nullptr; |
| 1420 | } |
| 1421 | |
| 1422 | const std::vector<Matrix>& Tr2GrannyAnimation::GetWorldTransforms() const |
| 1423 | { |
no test coverage detected