mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
b77324ec58
* added medical, food and roleplay categories to arsenal * decreased wound stitch time * added custom rightPanelButtons * stuff that doesnt belong here * fix * commys wishes * commys wishes part2 * Update addons/arsenal/defines.hpp Co-Authored-By: Dedmen Miller <dedmen@users.noreply.github.com> * Update addons/arsenal/functions/fnc_fillRightPanel.sqf Co-Authored-By: Dedmen Miller <dedmen@users.noreply.github.com> * Update addons/arsenal/functions/fnc_fillRightPanel.sqf Co-Authored-By: Dedmen Miller <dedmen@users.noreply.github.com> * infinitely better SPEED * changes * delete unused stuff * my own 3 white dots * fixed fillRightPanel IDC_MISC * commy fixes * background first Co-authored-by: Schwaggot <tom.ryan@posteo.de> Co-authored-by: Dedmen Miller <dedmen@users.noreply.github.com>
23 lines
699 B
C++
23 lines
699 B
C++
class GVAR(customArsenalButton_Button) : RscButtonArsenal {
|
|
x = QUOTE(safezoneW + safezoneX - 10 * GRID_W);
|
|
y = QUOTE(safezoneY + 88 * GRID_H);
|
|
w = QUOTE(9 * GRID_W);
|
|
h = QUOTE(9 * GRID_H);
|
|
|
|
text = QPATHTOF(data\iconCustom.paa);
|
|
tooltip = "";
|
|
onButtonClick = QUOTE([ARR_2(ctrlParent (_this select 0), _this select 0)] call FUNC(fillRightPanel));
|
|
colorBackground[] = {0,0,0,0.5};
|
|
};
|
|
|
|
class GVAR(customArsenalButton_Background) : ctrlStaticBackground {
|
|
x = QUOTE(safezoneW + safezoneX - 13 * GRID_W);
|
|
y = QUOTE(safezoneY + 88 * GRID_H);
|
|
w = QUOTE(12 * GRID_W);
|
|
h = QUOTE(9 * GRID_H);
|
|
|
|
colorBackground[] = {0,0,0,1};
|
|
fade = 1;
|
|
enable = 0;
|
|
};
|