better config for benchmarks

This commit is contained in:
2026-03-18 11:21:40 +00:00
parent aeef78eca2
commit 49972b9b64
4 changed files with 33 additions and 46 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ use crate::world::{tiles::TileMap, CurrentWorldSpriteState, TerrainSpriteState};
pub const CHUNK_SIZE: i32 = 8;
pub const Z_BELOW: f32 = 45.0;
pub const Z_BELOW: f32 = 5.0;
pub const Z_ABOVE: f32 = 15.0;
pub const Z_TOTAL: f32 = Z_ABOVE + Z_BELOW;
+2 -2
View File
@@ -69,8 +69,8 @@ impl Plugin for WorldPlugin {
}
fn setup_initial_chunks(mut event_writer: MessageWriter<GenerateChunkEvent>) {
for x in -5..=5 {
for y in -5..=5 {
for x in -15..=15 {
for y in -15..=15 {
event_writer.write(GenerateChunkEvent {
chunk_position: IVec2::new(x, y),
});