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

16 lines
476 B
C++

#include "FortAnimInput_TurnInPlace.h"
FFortAnimInput_TurnInPlace::FFortAnimInput_TurnInPlace() {
this->TurnThreshold90 = 0.00f;
this->InitialTurnCurveValue = 0.00f;
this->MaxAllowedRootYawOffset = 0.00f;
this->RootYawOffset = 0.00f;
this->RootYawOffsetAlpha = 0.00f;
this->bWantsToTurn = false;
this->bWantsToTurnInVehicle = false;
this->bWantsToTurnAgain = false;
this->bTurningLeft = false;
this->LastTurnRotationAmount = 0.00f;
}