Files
FNGameProj/Source/FortniteGame/Private/FortAnimInput_HoverBoard.cpp
2024-01-21 00:41:14 +01:00

19 lines
551 B
C++

#include "FortAnimInput_HoverBoard.h"
FFortAnimInput_HoverBoard::FFortAnimInput_HoverBoard() {
this->bIsUsingHoverboard = false;
this->HoverTransformAlpha = 0.00f;
this->HoverCycle = 0.00f;
this->HoverCycleVelocityCurve = NULL;
this->HoverHeight = 0.00f;
this->HoverHeightCurve = NULL;
this->HoverLeanAngle = 0.00f;
this->HoverLeanCurve = NULL;
this->HoverPitchAngle = 0.00f;
this->HoverYaw = 0.00f;
this->HoverYawCurrent = 0.00f;
this->HoverIdleLeanAlpha = 0.00f;
this->HoverPitchCurve = NULL;
}