Add name and loadingScreen to ProjectDocument and ProjectScene interfaces in architecture.md

This commit is contained in:
2026-04-11 13:28:59 +02:00
parent abda1bd1dd
commit d9b6b3e7fc

View File

@@ -377,6 +377,7 @@ Example persisted project structure:
```ts
interface ProjectDocument {
version: number;
name: string;
activeSceneId: string;
scenes: Record<string, ProjectScene>;
materials: Record<string, MaterialDef>;
@@ -387,6 +388,7 @@ interface ProjectDocument {
interface ProjectScene {
id: string;
name: string;
loadingScreen: SceneLoadingScreenSettings;
world: WorldSettings;
brushes: Record<string, Brush>;
modelInstances: Record<string, ModelInstance>;