GetMousePosition (Harvest)
From OxeyeWiki
screenX, screenY = getMousePosition() | ||
Returns the current mouse position, in screen coordinates. | ||
Parameter | Expected Type | Description |
Returns | ||
Returns two coordinates of a point on the screen, screenX and screenY. Both are of the type Number. |
Example
local mouseX, mouseY = harvest.getMousePosition() local x,y = harvest.screenToWorldCoordinates(mouseX, mouseY) harvest.spawnChargeBomb(x, y)