mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
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
This commit is contained in:
@ -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);
|
||||
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user