mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
666 B
Plaintext
20 lines
666 B
Plaintext
|
[
|
||
|
QGVAR(enabled), "CHECKBOX",
|
||
|
["STR_A3_OPTIONS_ENABLED", LSTRING(setting_description)],
|
||
|
LSTRING(category_displayName),
|
||
|
true, // default value
|
||
|
true, // isGlobal
|
||
|
{[QGVAR(fireEnabled), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
||
|
true // Needs mission restart
|
||
|
] call CBA_settings_fnc_init;
|
||
|
|
||
|
[
|
||
|
QGVAR(enableFlare), "CHECKBOX",
|
||
|
[LSTRING(setting_flareEnable), LSTRING(setting_flareDescription)],
|
||
|
LSTRING(category_displayName),
|
||
|
false, // default value
|
||
|
true, // isGlobal
|
||
|
{[QGVAR(flareEnabled), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
||
|
true // Needs mission restart
|
||
|
] call CBA_settings_fnc_init;
|