diff --git a/crates/border-wars/src/map/generation.rs b/crates/border-wars/src/map/generation.rs index 0d40357..f1ce9ee 100644 --- a/crates/border-wars/src/map/generation.rs +++ b/crates/border-wars/src/map/generation.rs @@ -10,7 +10,7 @@ use super::{Tile, TilePosition}; pub struct MapGenerationPlugin; /// The zoom of the map during the generation. -const MAP_GENERATION_ZOOM: f32 = 5.; +const MAP_GENERATION_SCALE: f32 = 5.; impl Plugin for MapGenerationPlugin { fn build(&self, app: &mut App) { @@ -75,7 +75,7 @@ fn generate_map( /// Returns the type of the [HexPosition] with the given noise. fn get_tile_type(position: HexPosition, noise: &Perlin) -> Tile { - let pixel_position = position.to_pixel_coordinates() / MAP_GENERATION_ZOOM; + let pixel_position = position.to_pixel_coordinates() / MAP_GENERATION_SCALE; let value = noise.get([pixel_position.x as f64, pixel_position.y as f64]); match value { v if v <= -0.4 => Tile::Hill,