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>
55 lines
1.7 KiB
Plaintext
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;
|