Pixels set to 0

This commit is contained in:
2023-09-11 13:40:47 -04:00
parent eabdabcfcd
commit 21a4db8a81
+2 -2
View File
@@ -141,7 +141,7 @@ public class HeightMap {
for (int y = 0; y <= this.fullExtentsY; y++) { for (int y = 0; y <= this.fullExtentsY; y++) {
for (int x = 0; x <= this.fullExtentsX; x++) { for (int x = 0; x <= this.fullExtentsX; x++) {
pixelColorValues[x][y] = 255; pixelColorValues[x][y] = 0;
} }
} }
@@ -176,7 +176,7 @@ public class HeightMap {
for (int y = 0; y <= this.fullExtentsY; y++) { for (int y = 0; y <= this.fullExtentsY; y++) {
for (int x = 0; x <= this.fullExtentsX; x++) { for (int x = 0; x <= this.fullExtentsX; x++) {
pixelColorValues[x][y] = 255; pixelColorValues[x][y] = 0;
} }
} }