mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
29 lines
691 B
C++
29 lines
691 B
C++
#include "InteractionPointWidget.h"
|
|
|
|
void UInteractionPointWidget::UpdateDistance() {
|
|
}
|
|
|
|
void UInteractionPointWidget::StopDistanceUpdateTimer() {
|
|
}
|
|
|
|
void UInteractionPointWidget::StartDistanceUpdateTimer() {
|
|
}
|
|
|
|
void UInteractionPointWidget::SetDistanceText(float Distance) {
|
|
}
|
|
|
|
UInteractionPointWidget::UInteractionPointWidget() : UUserWidget(FObjectInitializer::Get()) {
|
|
Switcher_Icons = NULL;
|
|
TextBlock_Distance = NULL;
|
|
TargetActor = NULL;
|
|
bScaleIconByDistance = false;
|
|
MinIconScale = 1;
|
|
MinIconScaleDistance = 1;
|
|
MaxIconScale = 1;
|
|
MaxIconScaleDistance = 1;
|
|
HideIconWhenCloseDistance = 1;
|
|
DistanceUpdateInterval = 1;
|
|
bValidSwitcher = false;
|
|
}
|
|
|