mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
429 B
C++
16 lines
429 B
C++
#include "FortSpectatorCameraComponent.h"
|
|
|
|
float UFortSpectatorCameraComponent::GetAutoCameraCutDistanceThreshold() const {
|
|
return 0.0f;
|
|
}
|
|
|
|
UFortSpectatorCameraComponent::UFortSpectatorCameraComponent() {
|
|
this->SpectatorController = NULL;
|
|
this->IntendedViewTarget = NULL;
|
|
this->CurrentBlend = NULL;
|
|
this->ScreenFringeFOVCurve = NULL;
|
|
this->ZoomRate = 50.00f;
|
|
this->FocalLengthInterpSpeed = 10.00f;
|
|
}
|
|
|