Files
FNGameProj/Source/FortniteGame/Private/FortInteractContextInfo.cpp
T
2024-06-07 01:17:09 +02:00

26 lines
768 B
C++

#include "FortInteractContextInfo.h"
bool UFortInteractContextInfo::HasValidContextOverride() const {
return false;
}
UFortInteractContextInfo::UFortInteractContextInfo() {
ContextOverrideWidget = NULL;
ReceivingActor = NULL;
InteractComponent = NULL;
OptionalObjectData = NULL;
LongInteractSound = NULL;
OptionalHUDDisplayWidget = NULL;
InteractionBeingAttempted = EInteractionBeingAttempted::FirstInteraction;
RequiredDuration = 1;
SecondRequiredDuration = 1;
bShowCountDown = false;
bShowFirstInteraction = true;
bShowSecondInteraction = false;
bIsSecondInteractionActive = false;
bDisplayTextOnly = false;
bSuppressInteractionWidget = false;
bSuppressSimpleInteractionWidgetForTouch = true;
}