Files
2026-04-22 15:51:07 +02:00

49 lines
1.6 KiB
C++

#include "FortAnimInput_GolfCart.h"
FFortAnimInput_GolfCart::FFortAnimInput_GolfCart() {
this->bIsUsingGolfCart = false;
this->bIsDriver = false;
this->bIsFrontPassenger = false;
this->bIsBackLeftPassenger = false;
this->bIsBackRightPassenger = false;
this->bIsFrontPassengerAndLeaning = false;
this->bIsBackPassengerAndLeaning = false;
this->bIsDrifting = false;
this->bIsBoosting = false;
this->bIsEBraking = false;
this->bIsReversing = false;
this->bIsBraking = false;
this->bIsMoving = false;
this->bIsMovingForward = false;
this->bIsPowerSliding = false;
this->bIsLeaning = false;
this->bIsLeaningOrBouncing = false;
this->bIsBounceCrouching = false;
this->bIsBounceCrouched = false;
this->bIsBounceJumping = false;
this->bIsBounceRecoiling = false;
this->bIsSteeringRight = false;
this->bIsSteeringLeft = false;
this->RunForwardAlpha = 0.00f;
this->BounceCompression = 0.00f;
this->LeanPositionX = 0.00f;
this->LeanPositionY = 0.00f;
this->LeanPositionZ = 0.00f;
this->bAimFWD = false;
this->bAimBWD = false;
this->bAimLFT = false;
this->bAimRGT = false;
this->PawnToVehicleDeltaYawAngleDegrees = 0.00f;
this->AimCardDirDeadZoneAngleDegrees = 0.00f;
this->AimCardDirAngleOffsetDegrees = 0.00f;
this->LastCardDirIndex = 0;
this->AimFWDDeltaAngleDegrees = 0.00f;
this->AimBWDDeltaAngleDegrees = 0.00f;
this->AimLFTDeltaAngleDegrees = 0.00f;
this->AimRGTDeltaAngleDegrees = 0.00f;
this->SlopePitchDegreeAngle = 0.00f;
this->SlopeRollDegreeAngle = 0.00f;
this->SteerAngle = 0.00f;
}