Package net.minecraftforge.client.event
Class ScreenEvent.KeyInput
java.lang.Object
net.minecraftforge.eventbus.api.Event
net.minecraftforge.client.event.ScreenEvent
net.minecraftforge.client.event.ScreenEvent.KeyInput
- Direct Known Subclasses:
ScreenEvent.KeyPressed,ScreenEvent.KeyReleased
- Enclosing class:
- ScreenEvent
Fired whenever a keyboard key is pressed or released. See the various subclasses to listen for key pressing or releasing.
-
Nested Class Summary
Nested classes/interfaces inherited from class net.minecraftforge.client.event.ScreenEvent
ScreenEvent.BackgroundRendered, ScreenEvent.CharacterTyped, ScreenEvent.Closing, ScreenEvent.Init, ScreenEvent.KeyPressed, ScreenEvent.KeyReleased, ScreenEvent.MouseButtonPressed, ScreenEvent.MouseButtonReleased, ScreenEvent.MouseDragged, ScreenEvent.MouseScrolled, ScreenEvent.Opening, ScreenEvent.Render, ScreenEvent.RenderInventoryMobEffectsNested classes/interfaces inherited from class net.minecraftforge.eventbus.api.Event
net.minecraftforge.eventbus.api.Event.HasResult, net.minecraftforge.eventbus.api.Event.Result -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturns theGLFW(platform-agnostic) key code.intReturns a bit field representing the active modifier keys.intReturns the platform-specific scan code.Methods inherited from class net.minecraftforge.client.event.ScreenEvent
getScreenMethods inherited from class net.minecraftforge.eventbus.api.Event
getListenerList, getPhase, getResult, hasResult, isCancelable, isCanceled, setCanceled, setPhase, setResult
-
Field Details
-
keyCode
private final int keyCode -
scanCode
private final int scanCode -
modifiers
private final int modifiers
-
-
Constructor Details
-
KeyInput
-
-
Method Details
-
getKeyCode
public int getKeyCode()Returns theGLFW(platform-agnostic) key code.- Returns:
- the
GLFW(platform-agnostic) key code - See Also:
-
input constants starting withKEY_key constants starting withGLFW_KEY_- the online GLFW documentation
-
getScanCode
public int getScanCode()Returns the platform-specific scan code.The scan code is unique for every key, regardless of whether it has a key code. Scan codes are platform-specific but consistent over time, so keys will have different scan codes depending on the platform but they are safe to save to disk as custom key bindings.
- Returns:
- the platform-specific scan code
- See Also:
-
getModifiers
public int getModifiers()Returns a bit field representing the active modifier keys.- Returns:
- a bit field representing the active modifier keys
- See Also:
-
CTRL modifier key bitSHIFT modifier key bitALT modifier key bitSUPER modifier key bitCAPS LOCK modifier key bitNUM LOCK modifier key bit- the online GLFW documentation
-