diff --git a/src/app/App.tsx b/src/app/App.tsx index 568f1c9c..0727d43b 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -10620,7 +10620,536 @@ export function App({ store, initialStatusMessage }: AppProps) { ) : ( - + + + + {!editorState.document.world.projectTimeLightingEnabled ? null : ( + <> + +
+ Blends over the authored day environment around sunrise. +
+
+ + + + + + +
+
+ + +
+ Blends over the authored day environment around sunset. +
+
+ + + + + + +
+
+ + +
+
Background
+
+ {formatWorldBackgroundLabel( + editorState.document.world.timeOfDay.night.background + )} +
+
+
+ {editorState.document.world.timeOfDay.night.background + .mode === "solid" + ? editorState.document.world.timeOfDay.night.background + .colorHex + : editorState.document.world.timeOfDay.night.background + .mode === "verticalGradient" + ? `${editorState.document.world.timeOfDay.night.background.topColorHex} -> ${editorState.document.world.timeOfDay.night.background.bottomColorHex}` + : (editorState.document.assets[ + editorState.document.world.timeOfDay.night + .background.assetId + ]?.sourceName ?? + editorState.document.world.timeOfDay.night + .background.assetId)} +
+
+ +
+
Background Mode
+
+ + + +
+
+ + {editorState.document.world.timeOfDay.night.background + .mode === "image" ? ( +
+
Night Image
+ + +
+ ) : ( +
+
Background Colors
+ {editorState.document.world.timeOfDay.night.background + .mode === "solid" ? ( + + ) : ( +
+ + +
+ )} +
+ )} + +
+ + + + +
+ + + )} + + +
Selection