mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
551 B
C++
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;
|
|
}
|
|
|