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 = { export const FOG_CONFIG = {
enabled: true, enabled: true,
color: "#c8dbbe", color: "#c8dbbe",
near: 22, near: 48,
far: 38, far: 78,
}; };
export const CHUNK_CONFIG = { export const CHUNK_CONFIG = {
enabled: true, enabled: true,
chunkSize: 30, chunkSize: 45,
loadRadius: 30, loadRadius: 60,
unloadRadius: 40, unloadRadius: 75,
updateInterval: 350, updateInterval: 350,
}; };