mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
23 lines
514 B
C++
23 lines
514 B
C++
#include "TowhookParams.h"
|
|
|
|
FTowhookParams::FTowhookParams() {
|
|
MaxCableLength = 1;
|
|
MinCableLength = 1;
|
|
bUseSpring = false;
|
|
bUseRope = false;
|
|
SpringStiffness = 1;
|
|
SpringDamping = 1;
|
|
SpringMaxStiffnessForce = 1;
|
|
SpringMaxStiffnessVelocity = 1;
|
|
SpringDeformationRate = 1;
|
|
RopeGive = 1;
|
|
RopeBreakForce = 1;
|
|
RopeYankForce = 1;
|
|
ExtendSpeedKmh = 1;
|
|
ContractSpeedKmh = 1;
|
|
bApplySpringToSelf = false;
|
|
bApplySpringToOther = false;
|
|
bTakeUpSlack = false;
|
|
}
|
|
|