From 67fcd8096d90996edda5acfd9e79ad0e4c09c1f1 Mon Sep 17 00:00:00 2001 From: hut Date: Sat, 16 Mar 2024 23:44:46 +0100 Subject: [PATCH] explicit luminance --- src/world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world.rs b/src/world.rs index a642061..e3e81c6 100644 --- a/src/world.rs +++ b/src/world.rs @@ -64,7 +64,7 @@ pub fn setup( // Add Light commands.spawn(DirectionalLightBundle { directional_light: DirectionalLight { - illuminance: light_consts::lux::OVERCAST_DAY, + illuminance: 1000.0, shadows_enabled: true, ..default() },