From bc24151a63bbba1caccde303a7672ab8243c35c3 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Mon, 14 Oct 2024 09:15:32 +0300 Subject: [PATCH] update default chunks rendering settings values --- src/settings.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/settings.hpp b/src/settings.hpp index ed368863..8d1abdbf 100644 --- a/src/settings.hpp +++ b/src/settings.hpp @@ -64,8 +64,8 @@ struct GraphicsSettings { /// @brief Enable chunks frustum culling FlagSetting frustumCulling {true}; IntegerSetting skyboxResolution {64 + 32, 64, 128}; - IntegerSetting chunkMaxVertices {1'000'000, 0, 4'000'000}; - IntegerSetting chunkMaxRenderers {0, -4, 32}; + IntegerSetting chunkMaxVertices {200'000, 0, 4'000'000}; + IntegerSetting chunkMaxRenderers {6, -4, 32}; }; struct DebugSettings {