fix terrain ordering

This commit is contained in:
2025-05-06 14:24:29 +01:00
parent 49095cc47f
commit 6f82b904fe
3 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -9,9 +9,9 @@ use noise::{NoiseFn, Perlin};
pub const CHUNK_SIZE: i32 = 8;
pub const Z_BELOW: f32 = 30.0;
pub const Z_BELOW: f32 = 10.0;
pub const Z_ABOVE: f32 = 5.0;
pub const Z_TOTAL: f32 = Z_ABOVE + Z_BELOW;
pub const Z_TOTAL: f32 = Z_ABOVE + Z_BELOW; // MAX 255 DO NOT EXCEED
#[derive(Resource)]
pub struct ChunkMap {