mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
22 lines
470 B
C++
22 lines
470 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() {
|
|
LoopingSound = NULL;
|
|
bFadeWhenOwnerDestroyed = true;
|
|
FadeTimeWhenOwnerDestroyed = 1;
|
|
OneShotGateInterpSpeed = 1;
|
|
}
|
|
|