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

19 lines
489 B
C++
Executable file

#include "DynamicReverbComponent.h"
void UDynamicReverbComponent::TunnelTimerTriggered() {
}
void UDynamicReverbComponent::TimerTriggered() {
}
UDynamicReverbComponent::UDynamicReverbComponent() {
this->LargeCaveValue = 2000.00f;
this->MediumCaveValue = 1000.00f;
this->SmallCaveValue = 500.00f;
this->FadeTime = 1.00f;
this->Priority = 1.00f;
this->TunnelAmbienceFadeIn = 0.00f;
this->TunnelAmbienceFadeOut = 1.00f;
this->TunnelSoundInstance = NULL;
}