diff --git a/src/game/scene.rs b/src/game/scene.rs index fc3bfe8..10383b5 100644 --- a/src/game/scene.rs +++ b/src/game/scene.rs @@ -197,7 +197,11 @@ fn spawn_block( transform: Transform::from_xyz( x + block_size * ((len as f32 - 1.) / 2.), y, - WORLD_DEPTH, + if fixed { + WORLD_DEPTH + } else { + WORLD_DEPTH - 0.01 + }, ), ..Default::default() },