Made fog stay red longer.

This commit is contained in:
Faerbit 2015-03-10 08:13:45 +01:00
parent 3090c5e0f9
commit 8349f8594e
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ vec4 fogColor(float dot) {
dayFactor = 1.0;
}
else {
dayFactor = sin(1.5*dot);
dayFactor = sin(dot);
}
if (dot <0.0) {
return mix(fogColorNight, fogColorRise, riseFactor);

View File

@ -39,7 +39,7 @@ vec4 fogColor(float dot) {
dayFactor = 1.0;
}
else {
dayFactor = sin(1.5*dot);
dayFactor = sin(dot);
}
if (dot <0.0) {
return mix(fogColorNight, fogColorRise, riseFactor);