Py5MouseEvent.get_millis()
Contents
Py5MouseEvent.get_millis()¶
Return the event’s timestamp.
Examples¶
1def setup():
2 py5.size(200, 200, py5.P2D)
3 py5.rect_mode(py5.CENTER)
4
5
6def draw():
7 py5.square(py5.random(py5.width), py5.random(py5.height), 10)
8
9
10def mouse_clicked(e):
11 py5.println('mouse event time:', e.get_millis())
Description¶
Return the event’s timestamp. This will be measured in milliseconds.
Underlying Processing method: getMillis