mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
12 lines
325 B
C++
12 lines
325 B
C++
#include "FortRootMotionSource_FallingBoost.h"
|
|
|
|
FFortRootMotionSource_FallingBoost::FFortRootMotionSource_FallingBoost() {
|
|
this->VerticalImpulse = 1;
|
|
this->GravityScalar = 1;
|
|
this->MaxAcceleration = 1;
|
|
this->LateralFriction = 1;
|
|
this->MaxLateralSpeed = 1;
|
|
this->bHasAppliedVerticalImpulse = false;
|
|
}
|
|
|