1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-22 17:18:39 +00:00

Fix stuff

This commit is contained in:
Gefüllte Taubenbrust 2025-04-13 14:56:08 +02:00
parent fa212d19f7
commit 282b9ad7c5
5 changed files with 34 additions and 12 deletions

View file

@ -185,7 +185,10 @@ void main(void)
adj_shadow_strength = f_shadow_strength *
mtsmoothstep(0.208, 0.238, f_timeofday) *
(1.0 - mtsmoothstep(0.762, 0.792, f_timeofday));
sunTint = mix(vec3(1.0), getDirectLightScatteringAtGround(v_LightDirection), adj_shadow_strength / f_shadow_strength);
#ifdef ENABLE_TINTED_SUNLIGHT
float tint_strength = 1.0 - mtsmoothstep(0.792, 0.5, f_timeofday) * mtsmoothstep(0.208, 0.5, f_timeofday);
sunTint = mix(vec3(1.0), getDirectLightScatteringAtGround(v_LightDirection), nightFactor * tint_strength);
#endif
}
}
#endif