From e32e790ad1182fbf3738cfcb96d88c224fc059bc Mon Sep 17 00:00:00 2001 From: Avii Date: Fri, 12 Jul 2024 16:40:18 +0200 Subject: [PATCH] remove scroll log --- src/helpers/camera.rs | 1 - 1 file changed, 1 deletion(-) 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 => {}