Prepare for terrain

This commit is contained in:
2023-10-08 09:04:15 -04:00
parent 6b339da061
commit 5fdaa11367
3 changed files with 47 additions and 51 deletions
+2 -2
View File
@@ -93,9 +93,9 @@ public class ZoneInfoCmd extends AbstractDevCmd {
if (zone.getHeightMap() != null) {
output += "HeightMap ID: " + zone.getHeightMap().heightMapID;
output += newline;
output += "Bucket Width X : " + zone.getHeightMap().bucketWidthX;
output += "Bucket Width X : " + zone.getHeightMap().cell_size_x;
output += newline;
output += "Bucket Width Y : " + zone.getHeightMap().bucketWidthY;
output += "Bucket Width Y : " + zone.getHeightMap().cell_size_y;
}
output += "radius: x: " + zone.bounds.getHalfExtents().x + ", z: " + zone.bounds.getHalfExtents().y;