-
-
Notifications
You must be signed in to change notification settings - Fork 18
keyboard_key
drewmccluskey edited this page Feb 12, 2019
·
2 revisions
variable with currently used key
Returns: string
This is a variable holding the name of the currently used key.
if (mouse_check_button_pressed(MouseButtons.Left))
{
show_message(keyboard_key);
}
This code will show the used key when you hold down a key and press the mouse left button.
Back to Keyboard