From b6e37b64da03a9bf2ca515efa942f2bff739438c Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 25 Apr 2026 01:33:58 +0200 Subject: [PATCH] auto-git: [change] src/app/App.tsx --- src/app/App.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 693f53e0..0fb99eee 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -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,