mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
15 lines
402 B
C++
15 lines
402 B
C++
#include "FortChaseCameraHelper.h"
|
|
|
|
FFortChaseCameraHelper::FFortChaseCameraHelper() {
|
|
CameraToPivotAlphaInterpSpeed = 1;
|
|
CameraCollisionSphereRadius = 1;
|
|
PivotLocationInterpSpeed = 1;
|
|
PivotRotationInterpSpeed = 1;
|
|
AutoFollowMode = EThirdPersonAutoFollowMode::Off;
|
|
CameraTruckRate = 1;
|
|
AutoFollowPitch = 1;
|
|
LazyAutoFollowPitchMin = 1;
|
|
LazyAutoFollowPitchMax = 1;
|
|
}
|
|
|