- Complied the SystemMenu buttons to the groupNum highlighting implementation as they're simple buttons

- Fixed issue of Query Server on-screen button tripping a join action
- Added playername textEdit field to Join Server menu
- Fixed issue of messageBox on-screen buttons not making the input events properly after adding the make/break check from prior commit
- Added MenuTextEditProfile for editable text fields in menu
- Fixed issue of not getting the correct shift key bitmap if the button name was l/rshift
This commit is contained in:
Areloch 2024-01-01 14:11:43 -06:00
parent e71880b898
commit 150684a47d
6 changed files with 87 additions and 23 deletions

View file

@ -200,4 +200,30 @@ singleton GuiControlProfile(GuiMenuScrollProfile)
bitmapAsset = "UI:scrollBar_image";
hasBitmapArray = true;
category = "BaseUI";
};
};
new GuiControlProfile(MenuTextEditprofile)
{
opaque = true;
fillColor = "10 10 10 255";
fillColorHL = "10 10 10 255";
fontColor = "240 240 240";
fontColorHL = "10 10 10 255";
fontColorSEL = "255 255 255 255";
fontColorNA = "200 200 200";
textOffset = "4 2";
autoSizeWidth = false;
autoSizeHeight = true;
justify = "left";
tab = true;
canKeyFocus = true;
category = "BaseUI";
borderColorSEL = "0 0 0 0";
fontColors[0] = "240 240 240 255";
fontColors[1] = "10 10 10 255";
fontColors[2] = "200 200 200 255";
fontColors[3] = "255 255 255 255";
fillColorSEL = "10 10 10 255";
fontSize = "18";
cursorColor = "255 255 255 255";
};