Hooked up the phone controller to the light and added a demo video at 1440x900

This commit is contained in:
MitchellHansen
2017-02-12 23:04:08 -08:00
parent e364c5380d
commit ab1fcb9678
7 changed files with 59 additions and 12 deletions

View File

@@ -184,6 +184,17 @@ void Old_Map::generate_terrain() {
}
}
for (int x = 100; x < 150; x += 10) {
for (int y = 100; y < 150; y += 10) {
for (int z = 0; z < 10; z += 1) {
voxel_data[x + dimensions.x * (y + dimensions.z * z)] = 5;
}
}
}
for (int x = 0; x < dimensions.x; x++) {
for (int y = 0; y < dimensions.y; y++) {