auto-git:

[change] src/app/App.tsx
This commit is contained in:
2026-04-25 01:33:58 +02:00
parent 79f930c46e
commit b6e37b64da

View File

@@ -11566,6 +11566,18 @@ export function App({ store, initialStatusMessage }: AppProps) {
);
};
const applyShaderSkyAuroraEnabled = (enabled: boolean) => {
applyShaderSkySettings(
enabled ? "Enable shader sky aurora" : "Disable shader sky aurora",
enabled
? "Shader sky aurora is now active."
: "Shader sky aurora is now hidden.",
(shaderSky) => {
shaderSky.aurora.enabled = enabled;
}
);
};
const applyCelestialOrbitSettings = (
label: string,
successMessage: string,