Class InputEvent.InteractionKeyMappingTriggered

java.lang.Object
net.minecraftforge.eventbus.api.Event
net.minecraftforge.client.event.InputEvent
net.minecraftforge.client.event.InputEvent.InteractionKeyMappingTriggered
Enclosing class:
InputEvent

public static class InputEvent.InteractionKeyMappingTriggered extends InputEvent
Fired when a keymapping that by default involves clicking the mouse buttons is triggered.

The key bindings that trigger this event are:

  • Use Item - defaults to left mouse click
  • Pick Block - defaults to middle mouse click
  • Attack - defaults to right mouse click

This event is cancellable, and does not have a result. If this event is cancelled, then the keymapping's action is not processed further, and the hand will be swung according to shouldSwingHand().

This event is fired on the main Forge event bus, only on the logical client.

  • Field Details

    • button

      private final int button
    • keyMapping

      private final KeyMapping keyMapping
    • hand

      private final InteractionHand hand
    • handSwing

      private boolean handSwing
  • Constructor Details

    • InteractionKeyMappingTriggered

      @Internal public InteractionKeyMappingTriggered(int button, KeyMapping keyMapping, InteractionHand hand)
  • Method Details

    • setSwingHand

      public void setSwingHand(boolean value)
      Sets whether to swing the hand. This takes effect whether or not the event is cancelled.
      Parameters:
      value - whether to swing the hand
    • shouldSwingHand

      public boolean shouldSwingHand()
      Returns whether to swing the hand; always takes effect, regardless of cancellation.
      Returns:
      whether to swing the hand; always takes effect, regardless of cancellation
    • getHand

      public InteractionHand getHand()
      Returns the hand that caused the input.

      The event will be called for both hands if this is a use item input regardless of both event's cancellation. Will always be InteractionHand.MAIN_HAND if this is an attack or pick block input.

      Returns:
      the hand that caused the input
    • isAttack

      public boolean isAttack()
      Returns true if the mouse button is the left mouse button.
      Returns:
      true if the mouse button is the left mouse button
    • isUseItem

      public boolean isUseItem()
      Returns true if the mouse button is the right mouse button.
      Returns:
      true if the mouse button is the right mouse button
    • isPickBlock

      public boolean isPickBlock()
      Returns true if the mouse button is the middle mouse button.
      Returns:
      true if the mouse button is the middle mouse button
    • getKeyMapping

      public KeyMapping getKeyMapping()
      Returns the key mapping which triggered this event.
      Returns:
      the key mapping which triggered this event