From 5610faa95878ddcab5f3946f7e7de4bf4d5be3ed Mon Sep 17 00:00:00 2001 From: Kelsi Date: Sun, 8 Feb 2026 00:21:10 -0800 Subject: [PATCH] Reduce WMO interior camera distance for tighter view --- src/rendering/camera_controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rendering/camera_controller.cpp b/src/rendering/camera_controller.cpp index 7c37dd52..5c885e8d 100644 --- a/src/rendering/camera_controller.cpp +++ b/src/rendering/camera_controller.cpp @@ -671,7 +671,7 @@ void CameraController::update(float deltaTime) { // Limit max zoom when inside a WMO (building interior) // Throttle: only recheck every 10 frames or when position changes >2 units. - static constexpr float WMO_MAX_DISTANCE = 5.0f; + static constexpr float WMO_MAX_DISTANCE = 3.5f; if (wmoRenderer) { float distFromLastCheck = glm::length(targetPos - lastInsideWMOCheckPos); if (++insideWMOCheckCounter >= 10 || distFromLastCheck > 2.0f) {