From 6561865033b2b3e62c0351a8cebac35262597259 Mon Sep 17 00:00:00 2001 From: Wulferis Date: Sun, 14 Apr 2024 23:08:18 +1000 Subject: [PATCH] Lowered default sun brightness --- Prowl.Runtime/Components/Lights/DirectionalLight.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Prowl.Runtime/Components/Lights/DirectionalLight.cs b/Prowl.Runtime/Components/Lights/DirectionalLight.cs index 9fed6fcfe..c13d05121 100644 --- a/Prowl.Runtime/Components/Lights/DirectionalLight.cs +++ b/Prowl.Runtime/Components/Lights/DirectionalLight.cs @@ -20,7 +20,7 @@ public enum Resolution : int public Resolution shadowResolution = Resolution._1024; public Color color = Color.white; - public float intensity = 32f; + public float intensity = 15f; public float qualitySamples = 16; public float blockerSamples = 16; public float shadowDistance = 50f;