remove troll profiles, add nether fog gameplay settings/tweaks

This commit is contained in:
Xonk
2024-01-01 00:05:14 -05:00
parent a7f0ab160a
commit 393cc09018
5 changed files with 33 additions and 13 deletions

View File

@ -306,7 +306,7 @@ vec4 renderClouds(
}
}
// if(signFlip > 0 || (signFlip < 0 && is_alto_below_cumulus)){
// blend them to appear IN FRONT the cumulus clouds in conditions
if((signFlip > 0 && !is_alto_below_cumulus) || (signFlip < 0 && is_alto_below_cumulus)){
color += max(Lighting_alto - Lighting_alto*exp(-mult*altostratus),0.0) * total_extinction;
total_extinction *= max(exp(-mult*altostratus),0.0);
@ -366,6 +366,7 @@ vec4 renderClouds(
#endif // Cumulus
#ifdef Altostratus
// blend them to appear BEHIND the cumulus clouds in conditions
if((signFlip < 0 && !is_alto_below_cumulus) || (signFlip > 0 && is_alto_below_cumulus)){
color += max(Lighting_alto - Lighting_alto*exp(-mult*altostratus),0.0) * total_extinction;
total_extinction *= max(exp(-mult*altostratus),0.0);