From 1d2a6804a4c71a3dd188f5899494a73f1b8cdd78 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 22 Apr 2026 15:16:11 +0200 Subject: [PATCH] auto-git: [change] src/document/scene-document-validation.ts --- src/document/scene-document-validation.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/document/scene-document-validation.ts b/src/document/scene-document-validation.ts index a5d34276..96b97ce5 100644 --- a/src/document/scene-document-validation.ts +++ b/src/document/scene-document-validation.ts @@ -549,6 +549,11 @@ function validateWorldSettings( "world.background", "world-background" ); + validateWorldShaderSkySettings( + world.shaderSky, + diagnostics, + "world.shaderSky" + ); if (!isHexColorString(world.ambientLight.colorHex)) { diagnostics.push( @@ -627,7 +632,10 @@ function validateWorldSettings( document, diagnostics, "world.timeOfDay.night.background", - "night-background" + "night-background", + { + allowShader: false + } ); if (!isHexColorString(world.timeOfDay.night.ambientColorHex)) {