| 59 | } |
| 60 | |
| 61 | void Tr2ForceSphereVolume::RenderDebugInfo( ITr2DebugRenderer2& renderer, const Matrix& worldTransform, const CcpMath::AxisAlignedBox& aabb ) const |
| 62 | { |
| 63 | renderer.DrawSphere( this, worldTransform, m_position, m_radius, 20, ITr2DebugRenderer2::Wireframe, 0xffaaaa00 ); |
| 64 | for( auto& force : m_forces ) |
| 65 | { |
| 66 | force->RenderDebugInfo( renderer, worldTransform, aabb ); |
| 67 | } |
| 68 | } |
nothing calls this directly
no test coverage detected