terrain quilting scaling fix

This commit is contained in:
2025-05-05 23:09:28 +01:00
parent 5726a68efb
commit 49095cc47f
5 changed files with 31 additions and 16 deletions
+2 -2
View File
@@ -275,8 +275,8 @@ fn generate_chunks_from_algo(
fn setup_initial_chunks(mut event_writer: EventWriter<LoadChunkEvent>) {
println!("setup_initial_chunks");
for x in -7..=7 {
for y in -7..=7 {
for x in -2..=2 {
for y in -2..=2 {
event_writer.write(LoadChunkEvent {
chunk_position: IVec2::new(x, y),
});