Name | keyPressed |
---|---|
Examples |
# Click on the image to give it focus, # and then press any key. # Note: The rectangle in this example may # flicker as the operating system may # register a long key press as a repetition # of key presses. def draw(): if keyPressed == True: fill(0) else: fill(255) rect(25, 25, 50, 50) THIS EXAMPLE IS BROKEN |
Description | The Boolean system variable keyPressed is True if any key is pressed and False if no keys are pressed. |
Related |
key keyCode keyPressed keyReleased() |
Updated on Mon Sep 21 15:53:25 2020.
If you see any errors or have comments, please let us know.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License