From 52ef199af35a004611af9710d3e9675bd4082050 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Mon, 23 Feb 2026 08:11:49 -0800 Subject: [PATCH] Reduce default max zoom out from 33 to 22 units --- include/rendering/camera_controller.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rendering/camera_controller.hpp b/include/rendering/camera_controller.hpp index c2ad22ef..835627bc 100644 --- a/include/rendering/camera_controller.hpp +++ b/include/rendering/camera_controller.hpp @@ -139,7 +139,7 @@ private: float collisionDistance = 10.0f; // Max allowed by collision bool externalFollow_ = false; static constexpr float MIN_DISTANCE = 0.5f; // Minimum zoom (first-person threshold) - static constexpr float MAX_DISTANCE_NORMAL = 33.0f; // Default max zoom out + static constexpr float MAX_DISTANCE_NORMAL = 22.0f; // Default max zoom out static constexpr float MAX_DISTANCE_EXTENDED = 50.0f; // Extended max zoom out bool extendedZoom_ = false; static constexpr float ZOOM_SMOOTH_SPEED = 15.0f; // How fast zoom eases