2017-07-24 17:34:58 +00:00
|
|
|
class CfgDynamicSimulation
|
|
|
|
{
|
|
|
|
//If this is false none of the below settings matter
|
2017-11-07 01:46:03 +00:00
|
|
|
enableDynamicSimulationSystem = true;
|
2017-07-24 17:34:58 +00:00
|
|
|
|
|
|
|
//Individual toggles for testing
|
|
|
|
vehicleDynamicSimulationSystem = true; // type car, air, boat
|
|
|
|
playerDynamicSimulationSystem = true; // clients
|
|
|
|
baseDynamicSimulationSystem = true; // plot pole and base pieces
|
|
|
|
|
|
|
|
// Distances and Coef
|
2017-11-08 15:19:54 +00:00
|
|
|
isMovingCoefValue = 3;
|
2017-07-24 17:34:58 +00:00
|
|
|
groupDynSimDistance = 1600;
|
|
|
|
vehicleDynSimDistance = 1600;
|
|
|
|
emptyVehicleDynSimDistance = 1600;
|
|
|
|
propDynSimDistance = 1600;
|
2017-11-07 01:46:03 +00:00
|
|
|
};
|