Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Reduce cloud coloring for colored fog and cloud mode
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/sky.cpp
|
@@ -556,7 +556,7 @@ void Sky::update(float time_of_day, float time_brightness, |
|
|
m_cloudcolor_bright_f.b * m_cloud_brightness, |
|
|
1.0); |
|
|
if (m_directional_colored_fog) { |
|
|
m_cloudcolor_f = m_mix_scolorf(m_cloudcolor_f, video::SColorf(pointcolor), m_horizon_blend() * 0.75); |
|
|
m_cloudcolor_f = m_mix_scolorf(m_cloudcolor_f, video::SColorf(pointcolor), m_horizon_blend() * 0.25); |
|
|
} |
|
|
|
|
|
} |
|
|