mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
7877ce3116
* Add setting for follow camera max distance * Convert spectator settings to CBA function
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
[
|
|
QGVAR(enableAI),
|
|
"CHECKBOX",
|
|
[LSTRING(ai_DisplayName), LSTRING(ai_Description)],
|
|
LSTRING(Settings_DisplayName),
|
|
false,
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(restrictModes),
|
|
"LIST",
|
|
[LSTRING(modes_DisplayName), LSTRING(modes_Description)],
|
|
LSTRING(Settings_DisplayName),
|
|
[[0, 1, 2, 3, 4], [LSTRING(modes_all), LSTRING(modes_unit), "STR_A3_Spectator_free_camera_tooltip", "STR_A3_Spectator_1pp_camera_tooltip", "STR_A3_Spectator_3pp_camera_tooltip"], 0],
|
|
true,
|
|
{},
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(restrictVisions),
|
|
"LIST",
|
|
[LSTRING(visions_DisplayName), LSTRING(visions_Description)],
|
|
LSTRING(Settings_DisplayName),
|
|
[[0, 1, 2, 3], [LSTRING(modes_all), LSTRING(visions_nv), LSTRING(visions_ti), "STR_Special_None"], 0],
|
|
true,
|
|
{},
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(maxFollowDistance),
|
|
"SLIDER",
|
|
[LSTRING(MaxFollowDistance_DisplayName), LSTRING(MaxFollowDistance_Description)],
|
|
LSTRING(Settings_DisplayName),
|
|
[5, 25, 5, 1],
|
|
false
|
|
] call CBA_settings_fnc_init;
|