remove scroll log

This commit is contained in:
2024-07-12 16:40:18 +02:00
parent e863b89e09
commit e32e790ad1

View File

@@ -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 => {}