Fix selection box aabbs

This commit is contained in:
ZacSharp
2024-08-09 13:54:29 +02:00
parent acdcbf5146
commit e682fc75a6

View File

@@ -37,7 +37,7 @@ public class Selection implements ISelection {
max.z - min.z + 1
);
this.aabb = new AABB(this.min);
this.aabb = new AABB(min.x, min.y, min.z, max.x + 1, max.y + 1, max.z + 1);
}
@Override