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

19 lines
597 B
C++

#include "Fort3PCameraMode.h"
UFort3PCameraMode::UFort3PCameraMode() {
this->FOV = 90.00f;
this->bValidateSafeLoc = false;
this->bDoPredictiveAvoidance = true;
this->bPreventPenetration = true;
this->PenetrationAvoidanceFeelers.AddDefaulted(7);
this->PenetrationBlendInTime = 0.10f;
this->PenetrationBlendOutTime = 0.15f;
this->PivotRotInterpSpeed = 8.00f;
this->FOVInterpSpeed = 8.00f;
this->ViewOffsetInterpSpeed = 8.00f;
this->SafeLocationInterpSpeed = 8.00f;
this->LastSafeLocBlockedPct = 0.00f;
this->LastPenetrationBlockedPct = 1.00f;
}