generator tweaks

data fixes
wip biome map visualization
This commit is contained in:
2024-09-01 22:49:48 -04:00
parent 77fa421bb2
commit 1dc6329252
7 changed files with 114 additions and 48 deletions

View File

@@ -1,10 +1,13 @@
use bevy::math::{UVec2, Vec3};
use bevy::{
math::{UVec2, Vec3},
prelude::Resource,
};
use noise::NoiseFn;
use rayon::iter::{IntoParallelIterator, ParallelIterator};
use super::chunk::Chunk;
#[derive(Clone)]
#[derive(Clone, Resource)]
pub struct BiomeMap {
pub height: usize,
pub width: usize,