add missing isMovingCoefValue CfgDynamicSimulation var

This commit is contained in:
vbawol 2017-11-06 19:46:03 -06:00
parent 6f42a5f47f
commit 82041a33b2

View File

@ -1,7 +1,7 @@
class CfgDynamicSimulation class CfgDynamicSimulation
{ {
//If this is false none of the below settings matter //If this is false none of the below settings matter
enableDynamicSimulationSystem = true; enableDynamicSimulationSystem = true;
//Individual toggles for testing //Individual toggles for testing
vehicleDynamicSimulationSystem = true; // type car, air, boat vehicleDynamicSimulationSystem = true; // type car, air, boat
@ -9,8 +9,9 @@ class CfgDynamicSimulation
baseDynamicSimulationSystem = true; // plot pole and base pieces baseDynamicSimulationSystem = true; // plot pole and base pieces
// Distances and Coef // Distances and Coef
isMovingCoefValue = 2;
groupDynSimDistance = 1600; groupDynSimDistance = 1600;
vehicleDynSimDistance = 1600; vehicleDynSimDistance = 1600;
emptyVehicleDynSimDistance = 1600; emptyVehicleDynSimDistance = 1600;
propDynSimDistance = 1600; propDynSimDistance = 1600;
}; };