mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
e52fc1ee25
Added cfgDynamicSimulation. Toggle entire system. Toggle individual sections player/bases/vehicles Set mulitpliers and distances. Will continue to add to these configs as BIS adds more scripting commands for us to use.
16 lines
487 B
C++
16 lines
487 B
C++
class CfgDynamicSimulation
|
|
{
|
|
//If this is false none of the below settings matter
|
|
enableDynamicSimulationSystem = true;
|
|
|
|
//Individual toggles for testing
|
|
vehicleDynamicSimulationSystem = true; // type car, air, boat
|
|
playerDynamicSimulationSystem = true; // clients
|
|
baseDynamicSimulationSystem = true; // plot pole and base pieces
|
|
|
|
// Distances and Coef
|
|
groupDynSimDistance = 1600;
|
|
vehicleDynSimDistance = 1600;
|
|
emptyVehicleDynSimDistance = 1600;
|
|
propDynSimDistance = 1600;
|
|
}; |