bool KeyDown(KEY key)/ETHInput

Returns true if the keyboard key is being pressed.

ETHInput@ input = GetInputHandle();

if (input.KeyDown(K_A))
{
    print("Player is holding A!");
}

if (input.KeyDown(K_SHIFT))
{
    print("Player is holding shift!");
}