lovr.system.wasMousePressed
EditReturns whether a button on the mouse was pressed this frame.
pressed = lovr.system.wasMousePressed(button)
Arguments
Name | Type | Description |
button | number | The index of a button to check. Use 1 for the primary mouse button, 2 for the secondary button, and 3 for the middle button. Other indices can be used, but are hardware-specific. |
Returns
Name | Type | Description |
pressed | boolean | Whether the mouse button was pressed this frame. |
Notes
Technically this returns whether the button was pressed between the last 2 calls to lovr.system.pollEvents
, but that function is called automatically at the beginning of each frame in lovr.run
, so it all works out!