mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
439 B
C++
16 lines
439 B
C++
#include "FortEffectDistanceQuality.h"
|
|
|
|
FFortEffectDistanceQuality::FFortEffectDistanceQuality() {
|
|
this->MinDistanceCinematic = 0.00f;
|
|
this->MinDistanceEpic = 0.00f;
|
|
this->MinDistanceHigh = 0.00f;
|
|
this->MinDistanceMedium = 0.00f;
|
|
this->MinDistanceLow = 0.00f;
|
|
this->bAllowCinematic = false;
|
|
this->bAllowEpic = false;
|
|
this->bAllowHigh = false;
|
|
this->bAllowMedium = false;
|
|
this->bAllowLow = false;
|
|
}
|
|
|