Files
2026-04-22 15:51:07 +02:00

15 lines
488 B
C++

#include "ExponentialHeightFogValues.h"
FExponentialHeightFogValues::FExponentialHeightFogValues() {
this->FogDensity = 0.00f;
this->FogHeightFalloff = 0.00f;
this->FogMaxOpacity = 0.00f;
this->StartDistance = 0.00f;
this->DirectionalInscatteringExponent = 0.00f;
this->DirectionalInscatteringStartDistance = 0.00f;
this->VolumetricFogScatteringDistribution = 0.00f;
this->VolumetricFogExtinctionScale = 0.00f;
this->VolumetricFogDistance = 0.00f;
}