mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
21 lines
598 B
C++
21 lines
598 B
C++
#include "FortAthenaVehicleInputState.h"
|
|
|
|
FFortAthenaVehicleInputState::FFortAthenaVehicleInputState() {
|
|
this->ForwardAlpha = 0.00f;
|
|
this->RightAlpha = 0.00f;
|
|
this->PitchAlpha = 0.00f;
|
|
this->LookUpDelta = 0.00f;
|
|
this->TurnDelta = 0.00f;
|
|
this->SteerAlpha = 0.00f;
|
|
this->GravityOffset = 0.00f;
|
|
this->bIsSprinting = false;
|
|
this->bIsJumping = false;
|
|
this->bIsBraking = false;
|
|
this->bIsHonking = false;
|
|
this->bIgnoreForwardInAir = false;
|
|
this->bMovementModifier0 = false;
|
|
this->bMovementModifier1 = false;
|
|
this->bMovementModifier2 = false;
|
|
}
|
|
|