mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
9c946727cc
* General - Setting category cleanup - Localize ACE Uncategorized - Add subcategories for everything in Uncategorized - Put colors in subCategory (alphabetically last) - Add extra info on ViewDistance settings descriptions - Move all settings to initSettings.sqf * Update initSettings.sqf
89 lines
2.2 KiB
Plaintext
89 lines
2.2 KiB
Plaintext
private _category = LLSTRING(mapGestures_category);
|
|
private _categoryColors = [_category, format ["| %1 |", LELSTRING(common,subcategory_colors)]];
|
|
|
|
[
|
|
QGVAR(enabled), "CHECKBOX",
|
|
[LSTRING(enabled_displayName), LSTRING(enabled_description)],
|
|
_category,
|
|
true,
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(maxRange), "SLIDER",
|
|
[LSTRING(maxRange_displayName), LSTRING(maxRange_description)],
|
|
_category,
|
|
[0,50,7,1],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(maxRangeCamera), "SLIDER",
|
|
[LSTRING(maxRangeCamera_displayName), LSTRING(maxRangeCamera_description)],
|
|
_category,
|
|
[0,50,14,1],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(allowSpectator), "CHECKBOX",
|
|
[LSTRING(allowSpectator_displayName), LSTRING(allowSpectator_description)],
|
|
_category,
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(allowCurator), "CHECKBOX",
|
|
[LSTRING(allowCurator_displayName), LSTRING(allowCurator_description)],
|
|
_category,
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(briefingMode), "LIST",
|
|
[LSTRING(briefingMode_displayName), LSTRING(briefingMode_description)],
|
|
_category,
|
|
[[0, 1, 2, 3, 4], [LSTRING(briefingMode_All), LSTRING(briefingMode_Group), LSTRING(briefingMode_Side), LSTRING(briefingMode_Proximity), LSTRING(briefingMode_Disabled)], 0]
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(onlyShowFriendlys),
|
|
"CHECKBOX",
|
|
[LSTRING(onlyShowFriendlys_displayName), LSTRING(onlyShowFriendlys_description)],
|
|
_category,
|
|
false,
|
|
1
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(interval), "SLIDER",
|
|
[LSTRING(interval_displayName), LSTRING(interval_description)],
|
|
_category,
|
|
[0,1,0.03,2],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(nameTextColor), "COLOR",
|
|
[LSTRING(nameTextColor_displayName), LSTRING(nameTextColor_description)],
|
|
_categoryColors,
|
|
[0.2,0.2,0.2,0.3],
|
|
false
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(defaultLeadColor), "COLOR",
|
|
[LSTRING(defaultLeadColor_displayName), LSTRING(defaultLeadColor_description)],
|
|
_categoryColors,
|
|
[1,0.88,0,0.95],
|
|
false
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(defaultColor), "COLOR",
|
|
[LSTRING(defaultColor_displayName), LSTRING(defaultColor_description)],
|
|
_categoryColors,
|
|
[1,0.88,0,0.7],
|
|
false
|
|
] call CBA_fnc_addSetting;
|