mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
19 lines
437 B
C++
19 lines
437 B
C++
#include "FortAudioShapeComponent.h"
|
|
|
|
void UFortAudioShapeComponent::UpdateAudioShape(TArray<TWeakObjectPtr<APlayerController>>& InLocalControllers) {
|
|
}
|
|
|
|
void UFortAudioShapeComponent::Enable() {
|
|
}
|
|
|
|
void UFortAudioShapeComponent::Disable(float FadeTime) {
|
|
}
|
|
|
|
UFortAudioShapeComponent::UFortAudioShapeComponent() {
|
|
UpdateFrequencyInaudible = 1;
|
|
UpdateFrequencyAudible = 1;
|
|
MaxDistanceOffset = 1;
|
|
SmoothingDistance = 1;
|
|
}
|
|
|