From 1aa8e55487e1338f38282e6932c9648d146f5996 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 11 Apr 2026 04:15:46 +0200 Subject: [PATCH] Import and use setSceneLoadingScreenCommand in App.tsx --- src/app/App.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 515ddf1c..e0c58a7a 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -30,6 +30,7 @@ import { createSetBoxBrushFaceUvStateCommand } from "../commands/set-box-brush-f import { createSetActiveSceneCommand } from "../commands/set-active-scene-command"; import { createDeleteInteractionLinkCommand } from "../commands/delete-interaction-link-command"; import { createSetModelInstanceNameCommand } from "../commands/set-model-instance-name-command"; +import { createSetSceneLoadingScreenCommand } from "../commands/set-scene-loading-screen-command"; import { createSetSceneNameCommand } from "../commands/set-scene-name-command"; import { createSetWorldSettingsCommand } from "../commands/set-world-settings-command"; import { createUpsertEntityCommand } from "../commands/upsert-entity-command"; @@ -147,6 +148,11 @@ import { type AdvancedRenderingToneMappingMode, type WorldSettings } from "../document/world-settings"; +import { + areSceneLoadingScreenSettingsEqual, + cloneSceneLoadingScreenSettings, + type SceneLoadingScreenSettings +} from "../document/scene-document"; import { formatSceneDiagnosticSummary, validateSceneDocument