Clouds: Fix reddish clouds. Add missing alpha update

Fix accidental swap of red and blue components that caused reddish clouds
Add missing update of alpha in remoteplayer.cpp
master
paramat 2017-05-02 01:37:23 +01:00
parent ae0d8f74d7
commit 76ec6b8313
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ Clouds::Clouds(
m_params.density = 0.4f;
m_params.thickness = 16.0f;
m_params.color_bright = video::SColor(229, 255, 240, 240);
m_params.color_bright = video::SColor(229, 240, 240, 255);
m_params.color_ambient = video::SColor(255, 0, 0, 0);
m_params.speed = v2f(0.0f, -2.0f);

View File

@ -68,7 +68,7 @@ RemotePlayer::RemotePlayer(const char *name, IItemDefManager *idef):
// copy defaults
m_cloud_params.density = 0.4f;
m_cloud_params.color_bright = video::SColor(255, 255, 240, 240);
m_cloud_params.color_bright = video::SColor(229, 240, 240, 255);
m_cloud_params.color_ambient = video::SColor(255, 0, 0, 0);
m_cloud_params.height = 120.0f;
m_cloud_params.thickness = 16.0f;