Feat/map-environment #6

Merged
math-pixel merged 116 commits from feat/map-environment into develop 2026-05-29 00:00:51 +00:00
Showing only changes of commit 44f9d68ef1 - Show all commits
+5 -5
View File
@@ -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,
};