mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
27 lines
847 B
C++
27 lines
847 B
C++
#include "FortOctopusVehicleConfigs.h"
|
|
|
|
UFortOctopusVehicleConfigs::UFortOctopusVehicleConfigs() {
|
|
MinBuildingDamage = 1;
|
|
MaxBuildingDamage = 1;
|
|
MinBuildingDamageSpeedKmh = 1;
|
|
MaxBuildingDamageSpeedKmh = 1;
|
|
MinBuildingDamageWhileBoosting = 1;
|
|
MaxBuildingDamageWhileBoosting = 1;
|
|
MinBuildingDamageSpeedWhileBoostingKmh = 1;
|
|
MaxBuildingDamageSpeedWhileBoostingKmh = 1;
|
|
TowhookNetUpdateTime = 1;
|
|
WaterTraction = 1;
|
|
BoostBounceRechargeFalloff = 1;
|
|
MinSpeedToLaunchPlayersKmh = 1;
|
|
MinYankLaunchForce = 1;
|
|
MaxYankLaunchForce = 1;
|
|
MinYankLaunchVelocityKmh = 1;
|
|
MaxYankLaunchVelocityKmh = 1;
|
|
MaxSignificanceBudgetForFX = 0;
|
|
MaxSignificanceBudgetForAudio = 0;
|
|
bDisableFXWhenInsignificant = false;
|
|
bDisableAudioTickWhenInsignificant = false;
|
|
bGlassIsPenetrable = false;
|
|
}
|
|
|