Posted October 18, 201213 yr Hello, I want to be able to have a modifier key (like shift) held down and have a specific action taken beside the normal onRightClick function that items have. I have been looking for a key press detector and I am not sure if there was one built into minecraft or forge itself. Any help would be appreciated and if extra information is need I will provide what I can.
October 18, 201213 yr In your base class: public void keyPressed(KeyEvent e) { int keyCode = e.getKeyCode(); switch( keyCode ) { case KeyEvent.VK_a: boolean isOn = true; break; case KeyEvent.VK_b: boolean isOn = false; break; } } The Korecraft Mod
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.