fix(world): throttle shadows and tune high preset

This commit is contained in:
Tom Boullay
2026-06-01 10:45:07 +02:00
parent bafca5a936
commit 6d58b90856
7 changed files with 112 additions and 26 deletions
+2 -4
View File
@@ -1,5 +1,3 @@
import { CHUNK_CONFIG } from "@/data/world/chunkStreamingConfig";
export const GRAPHICS_PRESET_KEYS = ["low", "medium", "high", "ultra"] as const;
export type GraphicsPreset = (typeof GRAPHICS_PRESET_KEYS)[number];
@@ -32,8 +30,8 @@ export const GRAPHICS_PRESETS = {
},
high: {
label: "High",
chunkLoadRadius: CHUNK_CONFIG.loadRadius,
chunkUnloadRadius: CHUNK_CONFIG.unloadRadius,
chunkLoadRadius: 35,
chunkUnloadRadius: 45,
fogEnabled: false,
forceLodModels: false,
lodHighDetailDistance: 10,