keyboard_check_released(key);
Argument | Description |
---|---|
key | The key to check the released state of. |
Returns: Boolean
With this function you can check to see if a key has been released or not. Unlike the keyboard_check function, this function will only run once for every time the key is lifted,
so for it to trigger again, the key must be first pressed and then released again.
if keyboard_check_released(ord('P'))
{
instance_create(0, 0, obj_Pause);
}
The above code will check to see if the "P" key has been released and if so, create an instance of "obj_Pause".