mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-06 17:41:04 +00:00
Color gradient for default and 'regular' type sky (#9502)
* add regular sky gradient * add regular sky gradient * Update sky.cpp * change default day sky colors
This commit is contained in:
parent
b6242498aa
commit
7cb53791c3
2 changed files with 6 additions and 31 deletions
|
@ -76,12 +76,12 @@ public:
|
|||
{
|
||||
SkyColor sky;
|
||||
// Horizon colors
|
||||
sky.day_horizon = video::SColor(255, 155, 193, 240);
|
||||
sky.day_horizon = video::SColor(255, 144, 211, 246);
|
||||
sky.indoors = video::SColor(255, 100, 100, 100);
|
||||
sky.dawn_horizon = video::SColor(255, 186, 193, 240);
|
||||
sky.night_horizon = video::SColor(255, 64, 144, 255);
|
||||
// Sky colors
|
||||
sky.day_sky = video::SColor(255, 140, 186, 250);
|
||||
sky.day_sky = video::SColor(255, 97, 181, 245);
|
||||
sky.dawn_sky = video::SColor(255, 180, 186, 250);
|
||||
sky.night_sky = video::SColor(255, 0, 107, 255);
|
||||
return sky;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue