From 579a354f50adce2da726f8447ed4a9343ac87ee1 Mon Sep 17 00:00:00 2001 From: hut Date: Wed, 24 Apr 2024 16:58:56 +0200 Subject: [PATCH] brighter directional illumination --- src/camera.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/camera.rs b/src/camera.rs index aceab5c..0b9cb83 100644 --- a/src/camera.rs +++ b/src/camera.rs @@ -102,7 +102,7 @@ pub fn setup_camera( // Add Light from the Sun commands.spawn(DirectionalLightBundle { directional_light: DirectionalLight { - illuminance: 1000.0, + illuminance: 3000.0, shadows_enabled: false, ..default() },