mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
17 lines
536 B
C++
17 lines
536 B
C++
#include "FortGoatVehicleAnimInstance.h"
|
|
|
|
UFortGoatVehicleAnimInstance::UFortGoatVehicleAnimInstance() {
|
|
this->GolfCart = NULL;
|
|
this->GolfCartSpeed = 0.00f;
|
|
this->bForwardSpeedIsNearlyZero = false;
|
|
this->bForwardSpeedIsGreaterThanOne = false;
|
|
this->bReverseSpeedIsGreaterThanOne = false;
|
|
this->bSpeedIsGreaterThanFiveAndPlayerHitSpace = false;
|
|
this->bIsBraking = false;
|
|
this->bIsEBraking = false;
|
|
this->bIsBoosting = false;
|
|
this->bIsPowerSliding = false;
|
|
this->bPlayerHitSpaceBar = false;
|
|
}
|
|
|