mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
13 lines
360 B
C++
13 lines
360 B
C++
#include "FortVehicleAudioOneshotGate.h"
|
|
|
|
FFortVehicleAudioOneshotGate::FFortVehicleAudioOneshotGate() {
|
|
this->GateValue = 0.00f;
|
|
this->Direction = EVehicleAudioTriggerDir::Forward;
|
|
this->FadeWhenOutsideGate = false;
|
|
this->Sound = NULL;
|
|
this->MinTimeSinceTrigger = 0.00f;
|
|
this->InterruptFadeTime = 0.00f;
|
|
this->AudioComp = NULL;
|
|
}
|
|
|