diff --git a/src/helpers/camera.rs b/src/helpers/camera.rs index 5c737fe..04c03da 100644 --- a/src/helpers/camera.rs +++ b/src/helpers/camera.rs @@ -20,7 +20,6 @@ pub fn mouse_zoom( for mut ortho in query.iter_mut() { ortho.scale -= scroll; ortho.scale = ortho.scale.clamp(0.5, 1.0); - dbg!(ortho.scale); } } MouseScrollUnit::Pixel => {}