mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
33 lines
816 B
C++
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;
|
|
}
|
|
|