mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
700 B
Plaintext
30 lines
700 B
Plaintext
/**
|
|
* fnc_onSliderPosChanged.sqf
|
|
* @Descr: N/A
|
|
* @Author: PabstMirror
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: false
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_newColor", "_settingIndex"];
|
|
|
|
_newColor = [];
|
|
{
|
|
_newColor pushBack ((sliderPosition _x) / 255);
|
|
} forEach [410, 411, 412, 413];
|
|
|
|
_settingIndex = lbCurSel 200;
|
|
|
|
switch (GVAR(optionMenu_openTab)) do {
|
|
case (MENU_TAB_COLORS): {
|
|
if ((_settingIndex >= 0) && (_settingIndex < (count GVAR(clientSideColors)))) then {
|
|
_settingIndex = (GVAR(clientSideColors) select _settingIndex) select 0;
|
|
[MENU_TAB_COLORS, _settingIndex, _newColor] call FUNC(updateSetting);
|
|
};
|
|
[false] call FUNC(settingsMenuUpdateList);
|
|
};
|
|
};
|