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
+11 -5
View File
@@ -80,6 +80,12 @@ export const docGroups: DocGroup[] = [
subtitle: "Step into Three.js internals",
meta: "11",
},
{
path: "/docs/map-performance",
title: "Map Performance",
subtitle: "Draw calls, triangles, and streaming",
meta: "12",
},
],
},
{
@@ -89,25 +95,25 @@ export const docGroups: DocGroup[] = [
path: "/docs/features",
title: "Features",
subtitle: "Implemented scope",
meta: "12",
meta: "13",
},
{
path: "/docs/main-feature",
title: "Main Feature",
subtitle: "Repair-game prototype",
meta: "13",
meta: "14",
},
{
path: "/docs/editor",
title: "Editor User Guide",
subtitle: "Editing workflow",
meta: "14",
meta: "15",
},
{
path: "/docs/animation",
title: "Animation & 3D Model System",
subtitle: "Components and usage",
meta: "15",
meta: "16",
},
],
},
@@ -118,7 +124,7 @@ export const docGroups: DocGroup[] = [
path: "/docs/code-review",
title: "Code Review Prep",
subtitle: "Presentation support",
meta: "16",
meta: "17",
},
],
},
+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,
};