mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
26 lines
768 B
C++
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;
|
|
}
|
|
|