From 44f9d68ef1c39aa19dcc9309d00c1eb00fb12893 Mon Sep 17 00:00:00 2001 From: Tom Boullay Date: Sun, 24 May 2026 23:52:37 +0200 Subject: [PATCH] tune: expand vegetation streaming range --- src/data/world/fogConfig.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/data/world/fogConfig.ts b/src/data/world/fogConfig.ts index 16ce426..f142a12 100644 --- a/src/data/world/fogConfig.ts +++ b/src/data/world/fogConfig.ts @@ -3,15 +3,15 @@ import { TERRAIN_COLORS } from "@/data/world/terrainConfig"; export const FOG_CONFIG = { enabled: true, color: "#c8dbbe", - near: 22, - far: 38, + near: 48, + far: 78, }; export const CHUNK_CONFIG = { enabled: true, - chunkSize: 30, - loadRadius: 30, - unloadRadius: 40, + chunkSize: 45, + loadRadius: 60, + unloadRadius: 75, updateInterval: 350, };