From 095da01637f63f9bb4020df38b3179af8ad87309 Mon Sep 17 00:00:00 2001 From: Rich Churcher Date: Mon, 9 Sep 2024 23:04:47 +1200 Subject: [PATCH] Extraneous comment --- examples/camera/projection_zoom.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/camera/projection_zoom.rs b/examples/camera/projection_zoom.rs index 9686abe697374..108e00b20e310 100644 --- a/examples/camera/projection_zoom.rs +++ b/examples/camera/projection_zoom.rs @@ -233,9 +233,7 @@ fn zoom( orthographic.scaling_mode = ScalingMode::FixedVertical(zoom_level); } Projection::Perspective(perspective) => { - // Adjust the field of view, but keep it within our stated range. Note that we divide - // by an arbitrary factor here to prevent the perspective FOV change from seeming much - // faster than its orthographic equivalent. + // Adjust the field of view, but keep it within our stated range. perspective.fov = (perspective.fov + camera_settings.perspective_zoom_speed * mouse_wheel_input.delta.y) .clamp(