From c59f8242c92abd2eb9643185825c6c2520eeb394 Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 1 May 2024 00:44:47 +0200 Subject: [PATCH] lower illuminance from the sun --- src/camera.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/camera.rs b/src/camera.rs index a6b7de7..758c004 100644 --- a/src/camera.rs +++ b/src/camera.rs @@ -105,7 +105,7 @@ pub fn setup_camera( // Add Light from the Sun commands.spawn(DirectionalLightBundle { directional_light: DirectionalLight { - illuminance: 3000.0, + illuminance: 2000.0, shadows_enabled: settings.shadows_sun, ..default() },