mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
15 lines
497 B
C++
15 lines
497 B
C++
#include "FortAnimInput_SkydivingExternalForce.h"
|
|
|
|
FFortAnimInput_SkydivingExternalForce::FFortAnimInput_SkydivingExternalForce() {
|
|
this->bUseSkydivingVectorForce = false;
|
|
this->bUseNoisyClothGravity = false;
|
|
this->bApplyNoiseInActorSpace = false;
|
|
this->PerlinRangedOutMinX = 0.00f;
|
|
this->PerlinRangedOutMaxX = 0.00f;
|
|
this->PerlinRangedOutMinY = 0.00f;
|
|
this->PerlinRangedOutMaxY = 0.00f;
|
|
this->PerlinRangedOutMinZ = 0.00f;
|
|
this->PerlinRangedOutMaxZ = 0.00f;
|
|
}
|
|
|