-------------------------------------------------------------------------------- Description: Resets the object's bounding box, removing any overrides. --------------------------------------------------------------------------------
| 115 | // Resets the object's bounding box, removing any overrides. |
| 116 | // -------------------------------------------------------------------------------- |
| 117 | void Tr2InteriorPlaceable::BoundingBoxReset() |
| 118 | { |
| 119 | m_isBoundingBoxModified = false; |
| 120 | BoundingBoxInitialize( m_minBounds, m_maxBounds ); |
| 121 | |
| 122 | RebuildVolume(); |
| 123 | } |
| 124 | |
| 125 | bool Tr2InteriorPlaceable::GetWorldBoundingBox( Vector3& min, Vector3& max ) const |
| 126 | { |
nothing calls this directly
no test coverage detected