Jump to content

Modify key for item right click


KingPin298

Recommended Posts

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.