mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
17 lines
470 B
C++
17 lines
470 B
C++
#include "NameplatePreset.h"
|
|
|
|
FNameplatePreset::FNameplatePreset() {
|
|
this->bNamePlatesEnabled = false;
|
|
this->ViewDistance = 0.00f;
|
|
this->LowDetailDistance = 0.00f;
|
|
this->ArrowDistance = 0.00f;
|
|
this->bScalingOptionsEnabled = false;
|
|
this->HighDetailScaleMin = 0.00f;
|
|
this->HighDetailScaleMax = 0.00f;
|
|
this->LowDetailScaleMin = 0.00f;
|
|
this->LowDetailScaleMax = 0.00f;
|
|
this->ArrowScaleMin = 0.00f;
|
|
this->ArrowScaleMax = 0.00f;
|
|
}
|
|
|