mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
- 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:
parent
e71880b898
commit
150684a47d
6 changed files with 87 additions and 23 deletions
|
|
@ -113,6 +113,9 @@ function getButtonBitmap(%device, %button)
|
|||
}
|
||||
else if(%device $= "Keyboard" || %device $= "Mouse")
|
||||
{
|
||||
if(%button $= "lshift" || %button $= "rshift")
|
||||
%button = "shift";
|
||||
|
||||
%assetId = "UI:Keyboard_Black_" @ %button @ "_image";
|
||||
}
|
||||
else if(%device !$= "")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue