From b11afbe9694859db71ed7250fbc3c1a2fa18c90a Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 22 Apr 2026 12:32:54 +0200 Subject: [PATCH] auto-git: [change] src/app/App.tsx --- src/app/App.tsx | 456 +++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 376 insertions(+), 80 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 7ff91fc3..a8d7d5e1 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -14214,47 +14214,195 @@ export function App({ store, initialStatusMessage }: AppProps) {
Blends over the authored day environment around sunrise.
+
+
Background
+
+ {formatWorldBackgroundLabel( + editorState.document.world.timeOfDay.dawn.background + )} +
+
+
+ {describeWorldBackground( + editorState.document.world.timeOfDay.dawn.background, + editorState.document.assets, + { + emptyImageLabel: + "Automatic fallback from available day/night images" + } + )} +
+
+ +
+
Background Mode
+
+ + + +
+
+ + {editorState.document.world.timeOfDay.dawn.background + .mode === "image" ? ( +
+
Dawn Image
+ + +
+ ) : ( +
+
Background Colors
+ {editorState.document.world.timeOfDay.dawn.background + .mode === "solid" ? ( + + ) : ( +
+ + +
+ )} +
+ )}
- -
+
+
Background
+
+ {formatWorldBackgroundLabel( + editorState.document.world.timeOfDay.dusk.background + )} +
+
+
+ {describeWorldBackground( + editorState.document.world.timeOfDay.dusk.background, + editorState.document.assets, + { + emptyImageLabel: + "Automatic fallback from available day/night images" + } + )} +
+
+ +
+
Background Mode
+
+ + + +
+
+ + {editorState.document.world.timeOfDay.dusk.background + .mode === "image" ? ( +
+
Dusk Image
+ + +
+ ) : ( +
+
Background Colors
+ {editorState.document.world.timeOfDay.dusk.background + .mode === "solid" ? ( + + ) : ( +
+ + +
+ )} +
+ )}
- -