Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

So I know how to set a keybinding already.  When I'm looking for the G key, for example, I'd use Keyboard.KEY_G

 

What if I'm looking for Mouse Button 3?  The game already uses it for "Pick Block" (so I know it's possible) but Pick Block is essentially useless in the Survival game type so I'd like to have my mod remap it to something more useful.

I have never looked into this myself.... But wouldn't it be logical (if the keybindings use Keyboard) to assume that it would be Mouse.nameOfVariable?

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

  • Author

I have never looked into this myself.... But wouldn't it be logical (if the keybindings use Keyboard) to assume that it would be Mouse.nameOfVariable?

 

Quite logical!  And I have looked into that.  It is not as straightforward as the keyboard stuff.  Thus I asked here.

I have never looked into this myself.... But wouldn't it be logical (if the keybindings use Keyboard) to assume that it would be Mouse.nameOfVariable?

 

Quite logical!  And I have looked into that.  It is not as straightforward as the keyboard stuff.  Thus I asked here.

 

Well then.. I have no idea xD Try looking through source code... But have fun with that.

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

  • Author

I have never looked into this myself.... But wouldn't it be logical (if the keybindings use Keyboard) to assume that it would be Mouse.nameOfVariable?

 

Quite logical!  And I have looked into that.  It is not as straightforward as the keyboard stuff.  Thus I asked here.

 

Well then.. I have no idea xD Try looking through source code... But have fun with that.

 

Haha, well, thanks.  I'll post here if I find anything.

 

In the meantime, if anyone else knows, please feel free to race me to posting the solution.  :P

  • Author

Got it.

 

Mouse 3 (middle click, usually) is assigned integer -98 in the keybindings.  So if you're looking for a particular "key" in your code where you would normally use Keyboard.KEY_whatever (which is actually just a fancy name for an integer assigned to that key), you'd simply type "-98" (without the quotes, of course).

 

I figured this out by having another key call this when pressed:

 

System.out.println(Minecraft.getMinecraft().gameSettings.keyBindPickBlock.keyCode);

 

You can get any of the game's keybindings that way (though I don't imagine you'd need to except if you were looking for mouse buttons).  Just be sure to delete the above line of code when you've got the information you need.

 

Huh.  Just noticing that I used a lot of parenthesis in this post (and that's probably okay).  :P

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.