From ec9df9433ca912060850eb8e82e71905234fd35f Mon Sep 17 00:00:00 2001 From: RobertoMaurizzi Date: Sun, 6 Jul 2025 22:29:12 +0800 Subject: [PATCH] debug neighbours (in the end they work, it bad UI in inspector) --- src/demo/level.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/demo/level.rs b/src/demo/level.rs index 3a1b225..0947bcb 100644 --- a/src/demo/level.rs +++ b/src/demo/level.rs @@ -332,9 +332,10 @@ fn cache_wall_locations( ); info!( - "new level tile dimensions are x: {} y {}", + "new level tile dimensions are x: {} y {}, neighbours: {:?}", multi_level_walls.cache[level_iid].level_width, - multi_level_walls.cache[level_iid].level_height + multi_level_walls.cache[level_iid].level_height, + multi_level_walls.cache[level_iid].level_neighbours, ); multi_level_walls.cache[level_iid].debug_collisions(&GridCoords::default()); }