Started by
TumbleElf
on
Topic category: Help with Minecraft modding (Java Edition)
You know how you press the scroll wheel to select a block in creative? How would I bind something else to that with the Keybind Element?
Topic category: Help with Minecraft modding (Java Edition)
You know how you press the scroll wheel to select a block in creative? How would I bind something else to that with the Keybind Element?
Apparently mcreator currently doesn't have this implemented (or any mouse related functions).
You need to subscribe to InputEvent.MouseInputEvent to trigger events on mouse input. If you just want to query mouse status, you can import org.lwjgl.input.Mouse and use their mouse functions directly.