perf(map): snap assets to terrain

This commit is contained in:
Tom Boullay
2026-05-25 00:51:03 +02:00
parent 50fa94b3ad
commit d17738eaf1
18 changed files with 402 additions and 62 deletions
+4 -4
View File
@@ -2,16 +2,16 @@ import { TERRAIN_COLORS } from "@/data/world/terrainConfig";
export const FOG_CONFIG = {
enabled: true,
color: "#c8dbbe",
near: 34,
far: 58,
color: "#eef3f5",
near: 38,
far: 45,
};
export const CHUNK_CONFIG = {
enabled: true,
chunkSize: 35,
loadRadius: 45,
unloadRadius: 58,
unloadRadius: 45,
updateInterval: 350,
};