fix colision check on block place

This commit is contained in:
Sergwest585
2024-11-05 02:42:48 +03:00
parent 513b96ea4d
commit 726ee8ad70
2 changed files with 12 additions and 4 deletions
+4
View File
@@ -34,6 +34,10 @@ struct AABB {
return (a + b) * 0.5f;
}
inline AABB move(glm::vec3 pos) const {
return AABB(a + pos, b + pos);
}
/// @brief Multiply AABB size from center
inline void scale(const glm::vec3 mul) {
glm::vec3 center = (a + b) * 0.5f;