Fix aabbox3d constructor regression

This commit is contained in:
cx384 2025-01-01 23:50:44 +01:00
parent f54d209bc8
commit 75111fccd8

View File

@ -133,7 +133,7 @@ struct SMesh final : public IMesh
std::vector<u32> TextureSlots;
//! The bounding box of this mesh
core::aabbox3d<f32> BoundingBox{{0, 0, 0}};
core::aabbox3d<f32> BoundingBox{-1.0f, -1.0f, -1.0f, 1.0f, 1.0f, 1.0f};
};
} // end namespace scene