summaryrefslogtreecommitdiffstats
path: root/src/game/client/world/skybox.cc
blob: 393c260c85923edf5b5dbfaf53e7d1f9f6b530e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "client/pch.hh"

#include "client/world/skybox.hh"

glm::fvec3 skybox::fog_color;

void skybox::init(void)
{
    // https://convertingcolors.com/hex-color-B1F3FF.html
    skybox::fog_color = glm::fvec3(0.690f, 0.950f, 1.000f);
}