Biome blending

Dithering to biome edges
This commit is contained in:
2024-07-07 10:51:02 -04:00
parent 8e92df8008
commit ba2dcf7129
7 changed files with 68 additions and 19 deletions

View File

@@ -10,9 +10,10 @@ pub struct GenerationConfig {
pub sea_level: f64,
pub border_size: f32,
pub biome_blend: usize,
pub moisture_layer: NoiseConfig,
pub temperature_layer: NoiseConfig,
pub continent_layer: NoiseConfig,
pub biome_dither: f64,
pub moisture_noise: NoiseConfig,
pub temperature_noise: NoiseConfig,
pub continent_noise: NoiseConfig,
pub size: UVec2,
}