Files
FNGameProj/Source/FortniteGame/Private/FortWindImpulseCylinderDelta.cpp
2024-01-21 00:41:14 +01:00

18 lines
556 B
C++

#include "FortWindImpulseCylinderDelta.h"
FFortWindImpulseCylinderDelta::FFortWindImpulseCylinderDelta() {
this->bInitialized = false;
this->bRippleOutward = false;
this->SectionWidth = 0.00f;
this->InnerSectionRadius = 0.00f;
this->OuterSectionRadius = 0.00f;
this->MaximumRadius = 0.00f;
this->DesiredOverallBlendTime = 0.00f;
this->SectionBlendTime = 0.00f;
this->SectionCurrentBlendTime = 0.00f;
this->PreviousMagnitude = 0.00f;
this->SectionCurrentMagnitude = 0.00f;
this->DesiredMagnitude = 0.00f;
}