This commit is contained in:
2026-09-18 17:46:29 +02:00
parent 5d422ecef0
commit 11ae27cefe
5 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -2,9 +2,9 @@ use bevy::prelude::*;
use crate::{camera::MainCamera, player::Player};
pub const CHUNK_HEIGHT: f32 = 700.0; // Height of a cunk
const MARGIN_BELLOW: f32 = 400.0; // Height bellow the camera view it'll be gen
const MARGIN_ABOVE: f32 = 400.0; // Height above the camera view it'll be gen
pub const CHUNK_HEIGHT: f32 = 200.0; // Height a cunk
const MARGIN_BELLOW: f32 = 500.0; // Height bellow the camera view it'll be gen
const MARGIN_ABOVE: f32 = 500.0; // Height above the camera view it'll be gen
#[derive(Component)]
pub struct Chunk {