mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
1010 B
Plaintext
27 lines
1010 B
Plaintext
[
|
|
QGVAR(enable), "CHECKBOX",
|
|
[LSTRING(ModuleSettings_enable), LSTRING(ModuleSettings_enable_Description)],
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
true,
|
|
true,
|
|
{[QGVAR(enable), _this] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(loadTimeCoefficient), "SLIDER",
|
|
[LSTRING(loadTimeCoefficient), LSTRING(loadTimeCoefficient_description)],
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
[0, 10, 5, 1],
|
|
true,
|
|
{[QGVAR(loadTimeCoefficient), _this, true] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(paradropTimeCoefficent), "SLIDER",
|
|
[LSTRING(paradropTimeCoefficent), LSTRING(paradropTimeCoefficent_description)],
|
|
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
|
|
[0, 10, 2.5, 1],
|
|
true,
|
|
{[QGVAR(paradropTimeCoefficent), _this, true] call EFUNC(common,cbaSettings_settingChanged)}
|
|
] call CBA_settings_fnc_init;
|