benchmark

This commit is contained in:
StephenAdamson
2025-02-06 21:32:30 +00:00
parent 6161c21e22
commit 4089851734
5 changed files with 246 additions and 28 deletions
+2 -2
View File
@@ -285,8 +285,8 @@ fn handle_chunk_loading(
fn setup_initial_chunks(mut event_writer: EventWriter<LoadChunkEvent>) {
println!("setup_initial_chunks");
for x in -6..=6 {
for y in -3..=3 {
for x in -7..=7 {
for y in -7..=7 {
event_writer.send(LoadChunkEvent {
chunk_position: IVec2::new(x, y),
});