mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
enable dynamic simulation on vehicles
This commit is contained in:
parent
0efc699370
commit
b2354dc5a6
@ -111,3 +111,4 @@ _say3dsounds = "isClass _x" configClasses (_say3dsoundsConfig);
|
|||||||
|
|
||||||
// disable remote sensors on server and client as all Epoch AI is local to the side controlling it.
|
// disable remote sensors on server and client as all Epoch AI is local to the side controlling it.
|
||||||
disableRemoteSensors (["CfgEpochClient", "disableRemoteSensors", true] call EPOCH_fnc_returnConfigEntryV2);
|
disableRemoteSensors (["CfgEpochClient", "disableRemoteSensors", true] call EPOCH_fnc_returnConfigEntryV2);
|
||||||
|
enableDynamicSimulationSystem true;
|
||||||
|
@ -42,7 +42,7 @@ for "_i" from 1 to _maxVehicleLimit do {
|
|||||||
if ((_response select 0) == 1 && (_response select 1) isEqualType []) then {
|
if ((_response select 0) == 1 && (_response select 1) isEqualType []) then {
|
||||||
_arr = _response select 1;
|
_arr = _response select 1;
|
||||||
_arrNum = count _arr;
|
_arrNum = count _arr;
|
||||||
|
|
||||||
// New Upgrade System adds to DB array, check and correct older saved vehicles
|
// New Upgrade System adds to DB array, check and correct older saved vehicles
|
||||||
if (_arrNum < _dataFormatCount) then {
|
if (_arrNum < _dataFormatCount) then {
|
||||||
{
|
{
|
||||||
@ -52,7 +52,7 @@ for "_i" from 1 to _maxVehicleLimit do {
|
|||||||
};
|
};
|
||||||
} foreach _dataFormat;
|
} foreach _dataFormat;
|
||||||
};
|
};
|
||||||
|
|
||||||
if (_arrNum == _dataFormatCount) then {
|
if (_arrNum == _dataFormatCount) then {
|
||||||
|
|
||||||
// Validate and replace invaild data
|
// Validate and replace invaild data
|
||||||
@ -86,7 +86,7 @@ for "_i" from 1 to _maxVehicleLimit do {
|
|||||||
_vehicle setVariable ["BIS_enableRandomization", false];
|
_vehicle setVariable ["BIS_enableRandomization", false];
|
||||||
if !(isNull _vehicle) then {
|
if !(isNull _vehicle) then {
|
||||||
// make vehicle immune from damage.
|
// make vehicle immune from damage.
|
||||||
_vehicle allowDamage false;
|
_vehicle allowDamage false;
|
||||||
// store spawned vehicles in array to make one call to remains handler
|
// store spawned vehicles in array to make one call to remains handler
|
||||||
_allVehicles pushBack _vehicle;
|
_allVehicles pushBack _vehicle;
|
||||||
// remove selected slot from array and set on vehicle
|
// remove selected slot from array and set on vehicle
|
||||||
@ -212,7 +212,7 @@ for "_i" from 1 to _maxVehicleLimit do {
|
|||||||
|
|
||||||
// vehicle simulation handler
|
// vehicle simulation handler
|
||||||
if (_simulationHandler) then{
|
if (_simulationHandler) then{
|
||||||
_vehicle enableSimulationGlobal false;
|
_vehicle enableDynamicSimulation true;
|
||||||
};
|
};
|
||||||
// turrets
|
// turrets
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user