mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
22 lines
559 B
C++
22 lines
559 B
C++
#include "FortSpectatorCameraComponent.h"
|
|
|
|
void UFortSpectatorCameraComponent::OnFocalLengthSettingChanged(float NewFocalLength) {
|
|
}
|
|
|
|
void UFortSpectatorCameraComponent::OnApertureSettingChanged(float NewAperture) {
|
|
}
|
|
|
|
float UFortSpectatorCameraComponent::GetAutoCameraCutDistanceThreshold() const {
|
|
return 0.0f;
|
|
}
|
|
|
|
UFortSpectatorCameraComponent::UFortSpectatorCameraComponent() {
|
|
SpectatorController = NULL;
|
|
IntendedViewTarget = NULL;
|
|
CurrentBlend = NULL;
|
|
ScreenFringeFOVCurve = NULL;
|
|
ZoomRate = 1;
|
|
FocalLengthInterpSpeed = 1;
|
|
}
|
|
|