mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +00:00
22 lines
503 B
C++
22 lines
503 B
C++
#include "FortVehicleAudioVoice.h"
|
|
|
|
void UFortVehicleAudioVoice::StopAllAudio() {
|
|
}
|
|
|
|
void UFortVehicleAudioVoice::SetParamRange(float Min, float Max) {
|
|
}
|
|
|
|
void UFortVehicleAudioVoice::SetParamExplicit(FName Name, float Param) {
|
|
}
|
|
|
|
void UFortVehicleAudioVoice::SetParam(float Param) {
|
|
}
|
|
|
|
UFortVehicleAudioVoice::UFortVehicleAudioVoice() {
|
|
this->LoopingSound = NULL;
|
|
this->bFadeWhenOwnerDestroyed = true;
|
|
this->FadeTimeWhenOwnerDestroyed = 0.50f;
|
|
this->OneShotGateInterpSpeed = 10.00f;
|
|
}
|
|
|