From dbc171124bae08b0af31bcb0cc7a4c705d46742c Mon Sep 17 00:00:00 2001 From: Sam Jeeves Date: Mon, 4 Jul 2022 14:05:19 +0200 Subject: [PATCH] Adjust zoom factor to a value more appropriate for scroll wheels --- crates/fj-viewer/src/input/zoom.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fj-viewer/src/input/zoom.rs b/crates/fj-viewer/src/input/zoom.rs index 9827933e79..1d29a02430 100644 --- a/crates/fj-viewer/src/input/zoom.rs +++ b/crates/fj-viewer/src/input/zoom.rs @@ -43,4 +43,4 @@ impl Zoom { /// /// Smaller values will move the camera less with the same input. /// Larger values will move the camera more with the same input. -const ZOOM_FACTOR: f64 = 0.05; +const ZOOM_FACTOR: f64 = 0.1;