add snowfall level, which turns the sky grey
This commit is contained in:
parent
d9c97295c2
commit
1b65353931
@ -88,6 +88,7 @@ ProcSky::ProcSky(Context* context):
|
||||
, mieCollectionPower_(0.39f)
|
||||
, mieDistribution_(0.63f)
|
||||
, timeOfDay_(0.0f)
|
||||
, snowfall_(0.0f)
|
||||
{
|
||||
faceRotations_[FACE_POSITIVE_X] = Matrix3(0,0,1, 0,1,0, -1,0,0);
|
||||
faceRotations_[FACE_NEGATIVE_X] = Matrix3(0,0,-1, 0,1,0, 1,0,0);
|
||||
@ -161,6 +162,7 @@ bool ProcSky::Initialize(const char *light_name, Zone *zone, const char *skybox_
|
||||
atmoParams["LightDir"] = Vector3::DOWN;
|
||||
atmoParams["InvProj"] = cam_->GetProjection().Inverse();
|
||||
atmoParams["TimeOfDay"] = timeOfDay_;
|
||||
atmoParams["Snowfall"] = snowfall_;
|
||||
|
||||
// Add custom quad commands to render path.
|
||||
for (unsigned i = 0; i < MAX_CUBEMAP_FACES; ++i) {
|
||||
@ -258,6 +260,7 @@ void ProcSky::Update() {
|
||||
rPath_->SetShaderParameter("MieDistribution", mieDistribution_);
|
||||
rPath_->SetShaderParameter("InvProj", cam_->GetProjection().Inverse());
|
||||
rPath_->SetShaderParameter("TimeOfDay", timeOfDay_);
|
||||
rPath_->SetShaderParameter("Snowfall", snowfall_);
|
||||
SetRenderQueued(true);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user