From 82041a33b2ad1b35305b2c37e4ac2fe69045edf5 Mon Sep 17 00:00:00 2001 From: vbawol Date: Mon, 6 Nov 2017 19:46:03 -0600 Subject: [PATCH] add missing isMovingCoefValue CfgDynamicSimulation var --- Sources/epoch_config/Configs/CfgDynamicSimulation.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Sources/epoch_config/Configs/CfgDynamicSimulation.hpp b/Sources/epoch_config/Configs/CfgDynamicSimulation.hpp index 2f716b87..7ecb0fcb 100644 --- a/Sources/epoch_config/Configs/CfgDynamicSimulation.hpp +++ b/Sources/epoch_config/Configs/CfgDynamicSimulation.hpp @@ -1,7 +1,7 @@ class CfgDynamicSimulation { //If this is false none of the below settings matter - enableDynamicSimulationSystem = true; + enableDynamicSimulationSystem = true; //Individual toggles for testing vehicleDynamicSimulationSystem = true; // type car, air, boat @@ -9,8 +9,9 @@ class CfgDynamicSimulation baseDynamicSimulationSystem = true; // plot pole and base pieces // Distances and Coef + isMovingCoefValue = 2; groupDynSimDistance = 1600; vehicleDynSimDistance = 1600; emptyVehicleDynSimDistance = 1600; propDynSimDistance = 1600; -}; \ No newline at end of file +};