mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
17 lines
513 B
C++
17 lines
513 B
C++
#include "FortFeedbackEventData.h"
|
|
|
|
FFortFeedbackEventData::FFortFeedbackEventData() {
|
|
this->ChanceToPlay = 0.00f;
|
|
this->MinReplayTime = 0.00f;
|
|
this->MinReplayTimeForSpeaker = 0.00f;
|
|
this->MaxWitnessDistance = 0.00f;
|
|
this->bInterruptCurrentLine = false;
|
|
this->bCanBeInterrupted = false;
|
|
this->bCanQue = false;
|
|
this->MultiplayerBroadcastFilter = FFBF_Speaker;
|
|
this->ContextSelectionMethod = FFSM_Instigator;
|
|
this->FeedbackDelay = 0.00f;
|
|
this->TimeLastPlayed = 0.00f;
|
|
}
|
|
|