DRG-Femboy-Voice/Source/FSD/Private/MotionAudioController.cpp
2025-04-15 12:39:31 -07:00

16 lines
439 B
C++
Executable file

#include "MotionAudioController.h"
UMotionAudioController::UMotionAudioController() {
this->MaxValue = 0.00f;
this->IncreseSpeed = 0.00f;
this->DecaySpeed = 0.00f;
this->DebugText = false;
this->Clamp = false;
this->Interp = false;
this->AccelerationThreshold = 0.00f;
this->SpeedThreshold = 0.00f;
this->FadeInTime = 0.00f;
this->FadeOutTime = 0.00f;
this->AutoPlayOnSpeedThreshold = true;
}