From 2a5f1b2ffd34b571e4797bb8da34724e820be8a1 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Mon, 2 Mar 2026 14:37:41 +0100 Subject: [PATCH] update default camera settings --- include/config.hpp | 2 +- include/input_handler.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/config.hpp b/include/config.hpp index 2d867cf..53876da 100644 --- a/include/config.hpp +++ b/include/config.hpp @@ -29,7 +29,7 @@ constexpr float CAMERA_FOV = 90.0; constexpr float FOV_SPEED = 1.0; constexpr float MIN_FOV = 10.0; constexpr float MAX_FOV = 180.0; -constexpr float CAMERA_DISTANCE = 20.0; +constexpr float CAMERA_DISTANCE = 150.0; constexpr float ZOOM_SPEED = 2.5; constexpr float MIN_CAMERA_DISTANCE = 2.0; constexpr float MAX_CAMERA_DISTANCE = 2000.0; diff --git a/include/input_handler.hpp b/include/input_handler.hpp index f4f8395..8583394 100644 --- a/include/input_handler.hpp +++ b/include/input_handler.hpp @@ -78,7 +78,7 @@ public: // Camera bool camera_lock = true; - bool camera_mass_center_lock = false; + bool camera_mass_center_lock = true; bool camera_panning = false; bool camera_rotating = false;