mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
464ab0cefb
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
22 lines
994 B
Plaintext
22 lines
994 B
Plaintext
private _category = [LELSTRING(common,categoryUncategorized), LLSTRING(itemName)];
|
|
|
|
[
|
|
QGVAR(mapDataAvailable), "LIST",
|
|
[LSTRING(MapDataAvailable_DisplayName), LSTRING(MapDataAvailable_Description)],
|
|
_category,
|
|
[[0,1,2],[LSTRING(MapFill_None), LSTRING(MapFill_OnlyRoads), LSTRING(MapFill_Full)],2], // [values, titles, defaultIndex]
|
|
true, // isGlobal
|
|
{[QGVAR(mapDataAvailable), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true // require mission restart
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(waypointPrecision), "LIST",
|
|
[LSTRING(WaypointPrecision_DisplayName), LSTRING(WaypointPrecision_Description)],
|
|
_category,
|
|
[[1, 2, 3], [LSTRING(WaypointPrecision_medium), LSTRING(WaypointPrecision_close), LSTRING(WaypointPrecision_exact)], 2], // [values, titles, defaultIndex]
|
|
true, // isGlobal
|
|
{[QGVAR(waypointPrecision), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
false // require mission restart
|
|
] call CBA_fnc_addSetting;
|