Files
FNGameProj/Source/FortniteGame/Private/FortMountedTurretConfigs.cpp
2024-01-21 00:41:14 +01:00

19 lines
676 B
C++

#include "FortMountedTurretConfigs.h"
UFortMountedTurretConfigs::UFortMountedTurretConfigs() {
this->CameraShakeAmplitudeMin = 0.00f;
this->CameraShakeAmplitudeMax = 0.40f;
this->CameraShakeNormalizedSpeed = 70.00f;
this->CameraShakeSpeedCurvePow = 1.00f;
this->AimInterpSpeed = 19.00f;
this->InitialCameraInterpSpeed = 7.00f;
this->InitialCameraLerpTime = 0.50f;
this->MaxYawPerSecondThreshold = 800.00f;
this->MaxPitchPerSecondThreshold = 800.00f;
this->PitchConstraintAngleOffset = -25.00f;
this->bConstrainVerticalRotationOnly = true;
this->PedalCyclesPerFullTurn = 3.00f;
this->bWeaponIgnoresMountedTurretBase = 1;
}