From 667cd7882f1d0b037c1241901eb6f6e78e98c09d Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 2 Apr 2026 20:50:03 +0200 Subject: [PATCH] Reorganize imports in scene-document-validation.ts --- src/document/scene-document-validation.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/document/scene-document-validation.ts b/src/document/scene-document-validation.ts index 24870e48..a1522bed 100644 --- a/src/document/scene-document-validation.ts +++ b/src/document/scene-document-validation.ts @@ -18,7 +18,13 @@ import { import { type InteractionLink } from "../interactions/interaction-links"; import { BOX_FACE_IDS, hasPositiveBoxSize } from "./brushes"; import type { SceneDocument } from "./scene-document"; -import { isHexColorString, type WorldSettings } from "./world-settings"; +import { + isAdvancedRenderingShadowMapSize, + isAdvancedRenderingShadowType, + isAdvancedRenderingToneMappingMode, + isHexColorString, + type WorldSettings +} from "./world-settings"; export type SceneDiagnosticSeverity = "error" | "warning"; export type SceneDiagnosticScope = "document" | "build";