Skip to content
Snippets Groups Projects
Commit efd69ead authored by Michael Pohoreski's avatar Michael Pohoreski
Browse files

Merged in SL-12574_tweak_brightness (pull request #39)


SL-12574: Tweak sky cubemap to not be as dark to better match Windlight

Approved-by: default avatarDave Houlton <euclid@lindenlab.com>
parents e85fe64a 49239e8f
No related branches found
No related tags found
No related merge requests found
......@@ -254,7 +254,8 @@ LLColor4 LLAtmospherics::calcSkyColorInDir(const LLSettingsSky::ptr_t &psky, Atm
F32 brightness = vars.hazeColor.brightness();
F32 greyscale_sat = brightness * (1.0f - sky_saturation);
LLColor3 sky_color = vars.hazeColor * sky_saturation + smear(greyscale_sat);
//sky_color *= (0.5f + 0.5f * brightness); // SL-12574 EEP sky was too dark dark grey/blue, lighten it slightly
//sky_color *= (0.5f + 0.5f * brightness);
sky_color *= (0.85f + 0.15f*brightness); // SL-12574 EEP sky is being attenuated too much; brighten it slightly until calcSkyColorWLVert() is fixed to match Windlight
return LLColor4(sky_color, 0.0f);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment