mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
377 B
C++
15 lines
377 B
C++
#include "SkyAtmosphereValues.h"
|
|
|
|
FSkyAtmosphereValues::FSkyAtmosphereValues() {
|
|
RayleighScatteringScale = 1;
|
|
RayleighExponentialDistribution = 1;
|
|
MieScatteringScale = 1;
|
|
MieAbsorptionScale = 1;
|
|
MieAnisotropy = 1;
|
|
MieExponentialDistribution = 1;
|
|
OtherAbsorptionScale = 1;
|
|
AerialPespectiveViewDistanceScale = 1;
|
|
HeightFogContribution = 1;
|
|
}
|
|
|