Made sun brighter during sun rise.

This commit is contained in:
Faerbit 2015-04-12 21:16:17 +02:00
parent 93f790ec22
commit 9b2ca4d1d3

View File

@ -61,7 +61,7 @@ vec3 sunColorFunc(float dot) {
else {
riseFactor = cos(2*dot);
}
return mix(sunColor, vec3(fogColorRise), riseFactor);
return mix(sunColor, vec3(fogColorRise)*1.4, riseFactor);
}
void main() {