mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
437 B
C++
14 lines
437 B
C++
#include "PhysicsObjectInitialParameters.h"
|
|
|
|
FPhysicsObjectInitialParameters::FPhysicsObjectInitialParameters() {
|
|
this->OverrideMassInKG = 0.00f;
|
|
this->OverrideAngularDampening = 0.00f;
|
|
this->OverrideLinearDampening = 0.00f;
|
|
this->PlayerForceMultiplier = 0.00f;
|
|
this->PawnKnockbackMultiplier = 0.00f;
|
|
this->bEnableGravity = false;
|
|
this->bEnableGravityOnHit = false;
|
|
this->bShouldKillPawnOnHit = false;
|
|
}
|
|
|