From 5e350994126181af3ed81a449557724b7f1d3adc Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 22 Apr 2026 15:23:15 +0200 Subject: [PATCH] auto-git: [change] src/app/App.tsx --- src/app/App.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index d4e7afb1..b9d6b4ef 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1982,6 +1982,10 @@ function formatWorldBackgroundLabel( return "Vertical Gradient"; } + if (background.mode === "shader") { + return "Shader Sky"; + } + return "Image"; } @@ -2009,6 +2013,10 @@ function describeWorldBackground( return `${background.topColorHex} -> ${background.bottomColorHex}`; } + if (background.mode === "shader") { + return "Default Sky"; + } + if (background.assetId.trim().length === 0) { return options.emptyImageLabel ?? "Automatic fallback"; }