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

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;
}