mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
476 B
C++
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;
|
|
}
|
|
|