mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +00:00
32 lines
740 B
C++
32 lines
740 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() {
|
|
IndicatorType = EFortSoundIndicatorTypes::Generic;
|
|
SnapToSections = 0;
|
|
MaxAudibleDistanceOnSpawn = 1;
|
|
InstigatingActor = NULL;
|
|
IconOverride = NULL;
|
|
}
|
|
|