mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
c6d7df3770
- improve compat with a3 mlrs with remote cam (animationSourcePhase) - handle non [0] turrets (rhs prp) - add config entries - use vectorCos to fix fp error (thanks commy)
22 lines
851 B
Plaintext
22 lines
851 B
Plaintext
// CBA Settings [ADDON: ace_artillerytables]:
|
|
|
|
[
|
|
QGVAR(advancedCorrections), "CHECKBOX",
|
|
[LSTRING(advancedCorrections_displayName), LSTRING(advancedCorrections_description)],
|
|
["ACE Artillery", QUOTE(COMPONENT_BEAUTIFIED)],
|
|
false, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(advancedCorrections), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true // Needs mission restart
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(disableArtilleryComputer), "CHECKBOX",
|
|
[LSTRING(disableArtilleryComputer_displayName), LSTRING(disableArtilleryComputer_description)],
|
|
["ACE Artillery", QUOTE(COMPONENT_BEAUTIFIED)],
|
|
false, // default value
|
|
true, // isGlobal
|
|
{[QGVAR(disableArtilleryComputer), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
false // Needs mission restart
|
|
] call CBA_settings_fnc_init;
|