| 481 | } |
| 482 | |
| 483 | void Tr2SkinnedObject::GetDebugOptions( Tr2DebugRendererOptions& options ) |
| 484 | { |
| 485 | options.insert( "Names" ); |
| 486 | options.insert( "Transforms" ); |
| 487 | options.insert( "Bounds" ); |
| 488 | if( m_visualModel && m_visualModel->GetSkeleton() ) |
| 489 | { |
| 490 | options.insert( "Bones" ); |
| 491 | options.insert( "Bones Names" ); |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | void Tr2SkinnedObject::RenderDebugInfo( ITr2DebugRenderer2& renderer ) |
| 496 | { |
nothing calls this directly
no test coverage detected