1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-31 18:31:04 +00:00
This commit is contained in:
Lars Mueller 2025-01-27 16:46:23 +01:00
parent c7c99296cb
commit de726bd41e
2 changed files with 5 additions and 5 deletions

View file

@ -99,7 +99,7 @@ public:
//! returns an axis aligned bounding box
const core::aabbox3d<f32> &getBoundingBox() const override {
// assert(false); // TODO refactor IMesh so that we don't have to implement this
return StaticBoundingBox;
return StaticPartsBoundingBox;
}
//! set user axis aligned bounding box
@ -398,7 +398,7 @@ protected:
std::vector<std::vector<char>> Vertices_Moved;
//! Bounding box of just the static parts of the mesh
core::aabbox3d<f32> StaticBoundingBox{{0, 0, 0}};
core::aabbox3d<f32> StaticPartsBoundingBox{{0, 0, 0}};
f32 EndFrame;
f32 FramesPerSecond;