Interface ScreenKeyboardEvents.AfterKeyRelease

Enclosing class:
ScreenKeyboardEvents
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 ScreenKeyboardEvents.AfterKeyRelease
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    afterKeyRelease(Screen screen, int key, int scancode, int modifiers)
    Called after a pressed key has been released.
  • Method Details

    • afterKeyRelease

      void afterKeyRelease(Screen screen, int key, int scancode, int modifiers)
      Called after a pressed key has been released.
      Parameters:
      key - the named key code which can be identified by the constants in GLFW
      scancode - the unique/platform-specific scan code of the keyboard input
      modifiers - a GLFW bitfield describing the modifier keys that are held down
      See Also: