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" ? ( + + ) : ( +
+ + +
+ )} +
+ )}
- -