SL-11055 Increase fog burn-through for fullbrights (for reals)

meow-7.2.2
Dave Houlton 2019-12-03 17:49:49 -07:00
parent 41330f4a39
commit 020ffe1bd3
2 changed files with 6 additions and 4 deletions

View File

@ -38,8 +38,9 @@ vec3 atmosTransportFrag(vec3 light, vec3 additive, vec3 atten)
{
return light * 2.0;
}
light *= atten.r;
light += additive;
// fullbright responds minimally to atmos scatter effects
light *= min(15.0 * atten.r, 1.0);
light += (0.1 * additive);
return light * 2.0;
}

View File

@ -38,8 +38,9 @@ vec3 atmosTransportFrag(vec3 light, vec3 additive, vec3 atten)
{
return light;
}
light *= atten.r;
light += additive;
// fullbright responds minimally to atmos scatter effects
light *= min(15.0 * atten.r, 1.0);
light += (0.1 * additive);
return light * 2.0;
}