Returns true if the keyboard key is being pressed.
true
key
ETHInput@ input = GetInputHandle(); if (input.KeyDown(K_A)) { print("Player is holding A!"); } if (input.KeyDown(K_SHIFT)) { print("Player is holding shift!"); }