dsfml.window.keyboard

$(U Keyboard) provides an interface to the state of the keyboard. It only contains static functions (a single keyboard is assumed), so it's not meant to be instanciated.

This class allows users to query the keyboard state at any time and directly, without having to deal with a window and its events. Compared to the KeyPressed and KeyReleased events, $(U Keyboard) can retrieve the state of a key at any time (you don't need to store and update a boolean on your side in order to know if a key is pressed or released), and you always get the real state of the keyboard, even if keys are pressed or released when your window is out of focus and no event is triggered.

Members

Classes

Keyboard
class Keyboard

Give access to the real-time state of the keyboard.

Examples

if (Keyboard.isKeyPressed(Keyboard.Key.Left))
{
    // move left...
}
else if (Keyboard.isKeyPressed(Keyboard.Key.Right))
{
    // move right...
}
else if (Keyboard.isKeyPressed(Keyboard.Key.Escape))
{
    // quit...
}

See Also

$(JOYSTICK_LINK), $(MOUSE_LINK), $(TOUCH_LINK)

Meta