1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 16:45:20 +02: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:
TheTermos
2020-05-09 17:14:56 +02:00
committed by GitHub
parent b6242498aa
commit 7cb53791c3
2 changed files with 6 additions and 31 deletions

View File

@@ -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;