mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
18 lines
556 B
C++
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;
|
|
}
|
|
|