docs: expose map performance notes

This commit is contained in:
Tom Boullay
2026-05-25 00:08:29 +02:00
parent 44f9d68ef1
commit 50fa94b3ad
8 changed files with 87 additions and 13 deletions
+5 -5
View File
@@ -3,15 +3,15 @@ import { TERRAIN_COLORS } from "@/data/world/terrainConfig";
export const FOG_CONFIG = {
enabled: true,
color: "#c8dbbe",
near: 48,
far: 78,
near: 34,
far: 58,
};
export const CHUNK_CONFIG = {
enabled: true,
chunkSize: 45,
loadRadius: 60,
unloadRadius: 75,
chunkSize: 35,
loadRadius: 45,
unloadRadius: 58,
updateInterval: 350,
};