ACE3/addons/viewdistance/initSettings.sqf
PabstMirror 9c946727cc
General - Setting category cleanup (#8640)
* 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
2021-10-30 16:42:47 -05:00

55 lines
1.7 KiB
Plaintext

private _category = format ["ACE %1", localize LSTRING(Module_DisplayName)];
[
QGVAR(enabled), "CHECKBOX",
[LSTRING(enabled_DisplayName), LSTRING(enabled_Description)],
_category,
true,
1
] call CBA_fnc_addSetting;
[
QGVAR(viewDistanceOnFoot), "SLIDER",
[LSTRING(onFoot_DisplayName), format ["%1\n%2", LLSTRING(onFoot_Description), LLSTRING(sliderExtraDescription)]],
_category,
[0, 10000, 0, -1],
0,
{[true] call FUNC(adaptViewDistance)}
] call CBA_fnc_addSetting;
[
QGVAR(viewDistanceLandVehicle), "SLIDER",
[LSTRING(landVehicle_DisplayName), format ["%1\n%2", LLSTRING(landVehicle_Description), LLSTRING(sliderExtraDescription)]],
_category,
[0, 10000, 0, -1],
0,
{[true] call FUNC(adaptViewDistance)}
] call CBA_fnc_addSetting;
[
QGVAR(viewDistanceAirVehicle), "SLIDER",
[LSTRING(airVehicle_DisplayName), format ["%1\n%2", LLSTRING(airVehicle_Description), LLSTRING(sliderExtraDescription)]],
_category,
[0, 10000, 0, -1],
0,
{[true] call FUNC(adaptViewDistance)}
] call CBA_fnc_addSetting;
[
QGVAR(limitViewDistance), "SLIDER",
[LSTRING(limit_DisplayName), LSTRING(limit_setting)],
_category,
[500, 12000, 10000, -1],
1,
{[true] call FUNC(adaptViewDistance)}
] call CBA_fnc_addSetting;
[
QGVAR(objectViewDistanceCoeff), "LIST",
[LSTRING(object_DisplayName), LSTRING(object_Description)],
_category,
[[0, 1, 2, 3, 4, 5, 6], [LSTRING(object_off), LSTRING(object_verylow), LSTRING(object_low), LSTRING(object_medium),LSTRING(object_high), LSTRING(object_veryhigh), LSTRING(object_fovBased)], 0],
0,
{[true] call FUNC(adaptViewDistance)}
] call CBA_fnc_addSetting;