Py5MouseEvent.is_meta_down()
Contents
Py5MouseEvent.is_meta_down()#
Return boolean value reflecting if the Meta key is down.
Examples#
def setup():
py5.size(200, 200)
py5.rect_mode(py5.CENTER)
def draw():
py5.square(py5.random(py5.width), py5.random(py5.height), 10)
def mouse_clicked(e):
if e.is_meta_down():
py5.println('the meta key is down')
else:
py5.println('the meta key is not down')
Description#
Return boolean value reflecting if the Meta key is down. The Meta key is a modifier key and can be pressed at the same time as other keys.
Underlying Processing method: isMetaDown
Signatures#
is_meta_down() -> bool
Updated on March 06, 2023 02:49:26am UTC