From a4475db929acf50c923a0af9d6d670da705b2d0d Mon Sep 17 00:00:00 2001 From: Peter Date: Sat, 16 Sep 2023 00:52:15 +0200 Subject: [PATCH] feat(Sky): set demo max mieDirectionalG to 0.99 --- playground/src/pages/staging/SkyDemo.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/src/pages/staging/SkyDemo.vue b/playground/src/pages/staging/SkyDemo.vue index 349dda1b..f9bca67d 100644 --- a/playground/src/pages/staging/SkyDemo.vue +++ b/playground/src/pages/staging/SkyDemo.vue @@ -17,7 +17,7 @@ const [turbidity, rayleigh, mieCoefficient, mieDirectionalG, elevation, azimuth, turbidity: { value: 3.4, min: 0, max: 20, step: 0.1 }, rayleigh: { value: 3, min: 0, max: 4, step: 0.1 }, mieCoefficient: { value: 0.005, min: 0, max: 0.1, step: 0.001 }, - mieDirectionalG: { value: 0.7, min: 0, max: 1, step: 0.1 }, + mieDirectionalG: { value: 0.7, min: 0, max: 0.99, step: 0.01 }, elevation: { value: 2, min: 0, max: 90, step: 0.1 }, azimuth: { value: 180, min: 0, max: 360, step: 1 }, exposure: { value: 0.5, min: 0, max: 1, step: 0.01 },