| 109 | }; |
| 110 | |
| 111 | bool ModelLODBase::HasAnyMeshInitialized() const |
| 112 | { |
| 113 | // Note: we initialize all meshes at once so the last one can be used to check it. |
| 114 | const int32 meshCount = GetMeshesCount(); |
| 115 | return meshCount != 0 && GetMesh(meshCount - 1)->IsInitialized(); |
| 116 | } |
| 117 | |
| 118 | BoundingBox ModelLODBase::GetBox() const |
| 119 | { |
no test coverage detected