mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
00fa94e636
* Initial Rewrite * improve getProximityPlayers * add Zeus Implementation * fix missing simicolon * add Spectator Support * improve local responsiveness * add Vanilla Spectator Support * Fix Both Spectators are now working correctly * exit mouse moving event early when disabled * Move Diary Event registration to XEH DisplayLoaded Port Settings to SQF Add Setting for only showing Friendly Units pointing * Fix Merge Issue in Stringtable Redo Settings * fix a copy past script error * Update addons/map_gestures/functions/fnc_getProximityPlayers.sqf Co-authored-by: PabstMirror <pabstmirror@gmail.com> * Lazy evals and defines * Small changes * Simplify initDisplayDiary and fix loading saves * Cache getProximityPlayers Improve Vanilla Spectator Support and how Followed unit Nearby data * Minor header update Co-authored-by: PabstMirror <pabstmirror@gmail.com>
57 lines
1.4 KiB
Plaintext
57 lines
1.4 KiB
Plaintext
[
|
|
QGVAR(enabled), "CHECKBOX",
|
|
[LSTRING(enabled_displayName), LSTRING(enabled_description)],
|
|
LSTRING(mapGestures_category),
|
|
true,
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(maxRange), "SLIDER",
|
|
[LSTRING(maxRange_displayName), LSTRING(maxRange_description)],
|
|
LSTRING(mapGestures_category),
|
|
[0,50,7,1],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(onlyShowFriendlys),
|
|
"CHECKBOX",
|
|
[LSTRING(onlyShowFriendlys_displayName), LSTRING(onlyShowFriendlys_description)],
|
|
LSTRING(mapGestures_category),
|
|
false,
|
|
1
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(interval), "SLIDER",
|
|
[LSTRING(interval_displayName), LSTRING(interval_description)],
|
|
LSTRING(mapGestures_category),
|
|
[0,1,0.03,2],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(nameTextColor), "COLOR",
|
|
[LSTRING(nameTextColor_displayName), LSTRING(nameTextColor_description)],
|
|
LSTRING(mapGestures_category),
|
|
[0.2,0.2,0.2,0.3],
|
|
false
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(defaultLeadColor), "COLOR",
|
|
[LSTRING(defaultLeadColor_displayName), LSTRING(defaultLeadColor_description)],
|
|
LSTRING(mapGestures_category),
|
|
[1,0.88,0,0.95],
|
|
false
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(defaultColor), "COLOR",
|
|
[LSTRING(defaultColor_displayName), LSTRING(defaultColor_description)],
|
|
LSTRING(mapGestures_category),
|
|
[1,0.88,0,0.7],
|
|
false
|
|
] call CBA_fnc_addSetting;
|