Interface ScreenMouseEvents.AllowMouseRelease

Enclosing class:
ScreenMouseEvents
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@Environment(CLIENT)
@FunctionalInterface
public static interface ScreenMouseEvents.AllowMouseRelease
  • Method Summary

    Modifier and Type Method Description
    boolean allowMouseRelease​(net.minecraft.client.gui.screen.Screen screen, double mouseX, double mouseY, int button)
    Checks if the mouse click should be allowed to release in a screen.
  • Method Details

    • allowMouseRelease

      boolean allowMouseRelease​(net.minecraft.client.gui.screen.Screen screen, double mouseX, double mouseY, int button)
      Checks if the mouse click should be allowed to release in a screen.
      Parameters:
      mouseX - the x position of the mouse
      mouseY - the y position of the mouse
      button - the button number, which can be identified by the constants in GLFW.
      See Also:
      GLFW.GLFW_MOUSE_BUTTON_1