mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
398 B
C++
15 lines
398 B
C++
#include "ExponentialHeightFogValues.h"
|
|
|
|
FExponentialHeightFogValues::FExponentialHeightFogValues() {
|
|
FogDensity = 1;
|
|
FogHeightFalloff = 1;
|
|
FogMaxOpacity = 1;
|
|
StartDistance = 1;
|
|
DirectionalInscatteringExponent = 1;
|
|
DirectionalInscatteringStartDistance = 1;
|
|
VolumetricFogScatteringDistribution = 1;
|
|
VolumetricFogExtinctionScale = 1;
|
|
VolumetricFogDistance = 1;
|
|
}
|
|
|