Update scrollbar color in lobby and player list

To match 6732e5c
This commit is contained in:
ebaydayz
2016-11-07 15:21:48 -05:00
parent 8bf41e1ed3
commit e0c06692e2
14 changed files with 49 additions and 39 deletions

View File

@@ -196,9 +196,19 @@ class RscDisplayMultiplayerSetup: RscStandardDisplay
class CA_ValuePool: RscIGUIListBox
{
idc = 114;
text = "Players";
text = $STR_MP_PLAYERS;
x = "(2/100) * SafeZoneW + SafeZoneX"; // to left
w = "(96/100) * SafeZoneW"; // wide
colorText[] = {0.95, 0.95, 0.95, 1};
class ScrollBar {
color[] = {1, 1, 1, 0.6};
colorActive[] = {0.5, 0.5, 0.5, 1};
colorDisabled[] = {1, 1, 1, 0.3};
thumb = "\z\addons\dayz_code\gui\grey\igui_scrollbar_thumb_ca.paa";
arrowFull = "\z\addons\dayz_code\gui\grey\igui_arrow_top_active_ca.paa";
arrowEmpty = "\z\addons\dayz_code\gui\grey\igui_arrow_top_ca.paa";
border = "\z\addons\dayz_code\gui\grey\igui_border_scroll_ca.paa";
};
};
class CA_B_Lock : RscShortcutButton {
idc = 118;
@@ -229,7 +239,22 @@ class RscDisplayMultiplayerSetup: RscStandardDisplay
animTextureFocused = "\z\addons\dayz_code\gui\grey\ui_button_focus_ca.paa";
animTexturePressed = "\z\addons\dayz_code\gui\grey\ui_button_down_ca.paa";
animTextureDefault = "\z\addons\dayz_code\gui\grey\ui_button_default_ca.paa";
};
};
class CA_B_Kick : RscShortcutButton {
idc = 116;
default = 0;
shortcuts[] = {0x00050000 + 2};
x = "(83/100) * SafeZoneW + SafeZoneX";
y = "(14/100) * SafeZoneH + SafeZoneY";
text = $STR_DISP_MP_KICKOFF;
color[] = {0.95, 0.95, 0.95, 1.0};
animTextureNormal = "\z\addons\dayz_code\gui\grey\ui_button_normal_ca.paa";
animTextureDisabled = "\z\addons\dayz_code\gui\grey\ui_button_disabled_ca.paa";
animTextureOver = "\z\addons\dayz_code\gui\grey\ui_button_over_ca.paa";
animTextureFocused = "\z\addons\dayz_code\gui\grey\ui_button_focus_ca.paa";
animTexturePressed = "\z\addons\dayz_code\gui\grey\ui_button_down_ca.paa";
animTextureDefault = "\z\addons\dayz_code\gui\grey\ui_button_default_ca.paa";
};
class CA_ButtonContinue : RscShortcutButton {
idc = 1;
default = 1;