mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
22 lines
609 B
C++
22 lines
609 B
C++
#include "FortSpaghettiVehicleAnimInstance.h"
|
|
|
|
UFortSpaghettiVehicleAnimInstance::UFortSpaghettiVehicleAnimInstance() {
|
|
SpaghettiVehicle = NULL;
|
|
SeatSteerYawDelta = 1;
|
|
SeatSteerPitchDelta = 1;
|
|
SeatSteerRollDelta = 1;
|
|
FwdBwd = 1;
|
|
LeftRight = 1;
|
|
PivotDir = EFortCardinalDirection::North;
|
|
bIsBoosting = false;
|
|
bIsTowhookExtending = false;
|
|
bIsTowhookAttached = false;
|
|
bIsTowhookContracting = false;
|
|
bIsTowhookHolstered = true;
|
|
bIsLowerVelocity = false;
|
|
bIsDriverFemale = false;
|
|
bShouldPlayPivotTransition = false;
|
|
bShouldPlayGrappleFire = false;
|
|
}
|
|
|