mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
488 B
C++
15 lines
488 B
C++
#include "FortChaseCameraHelper.h"
|
|
|
|
FFortChaseCameraHelper::FFortChaseCameraHelper() {
|
|
this->CameraToPivotAlphaInterpSpeed = 0.00f;
|
|
this->CameraCollisionSphereRadius = 0.00f;
|
|
this->PivotLocationInterpSpeed = 0.00f;
|
|
this->PivotRotationInterpSpeed = 0.00f;
|
|
this->AutoFollowMode = EThirdPersonAutoFollowMode::Off;
|
|
this->CameraTruckRate = 0.00f;
|
|
this->AutoFollowPitch = 0.00f;
|
|
this->LazyAutoFollowPitchMin = 0.00f;
|
|
this->LazyAutoFollowPitchMax = 0.00f;
|
|
}
|
|
|