Files
2026-04-22 15:51:07 +02:00

33 lines
816 B
C++

#include "FortSoundCameraLensEffect.h"
void AFortSoundCameraLensEffect::SetType(EFortSoundIndicatorTypes NewType) {
}
void AFortSoundCameraLensEffect::SetTintOverride(FLinearColor Color) {
}
void AFortSoundCameraLensEffect::SetStrengthCurve(const FRuntimeFloatCurve& Curve) {
}
void AFortSoundCameraLensEffect::SetInstigatingActor(const AActor* NewInstigator) {
}
void AFortSoundCameraLensEffect::SetIconOverride(UTexture* NewIcon) {
}
void AFortSoundCameraLensEffect::SetIcon(UTexture* NewIcon) {
}
AFortSoundCameraLensEffect::AFortSoundCameraLensEffect() {
this->IndicatorType = EFortSoundIndicatorTypes::Generic;
this->SnapToSections = 0;
this->MaxAudibleDistanceOnSpawn = 0.00f;
this->DistanceToSoundOnSpawn = 0.00f;
this->InstigatingActor = NULL;
this->IconOverride = NULL;
}