I have 10 buttons (like a hotbar). But I don't want to use a mouse ingame. So I need to make the buttons respond to the key-presses 0-9.
*Note: I DON'T want to attach some code to the onclick event. I know how to do that. I also know how to configure the Input manager.* I basically need to bind the keyboard keys to specific UI-Buttons and disable the mouse input on them.
Hotbar panel script (with the hotbar buttons as children):
void OnGUI()
{
if (Input.GetKeyDown(KeyCode.Alpha1))
GetComponent().FindChild("Hotbar1").... ? // show button-down transition
else if (Input.GetKeyUp(KeyCode.Alpha1))
GetComponent().FindChild("Hotbar1").... ? // show button-up transition AND actually click it so that it fires the attached on-click() methods.
// TODO: do this in a for-loop for all 10 buttons.
}
Where are my Button.click() or Button.down() & up() methods? I also tried manually setting the transition state (dirty method though) but I don't seem to be able to access that either. Is this even possible without coding my very own button?
I also checked out: http://unity3d.com/learn/tutorials/modules/beginner/ui/ui-button but it didn't explain it either. It assumes that you always use a mouse. But I read that Unity does not support keyboard-input for their GUI other than [Spacebar] for pressing the currently selected button...
↧