ScreenToWorldCoordinates (Harvest)
From OxeyeWiki
worldX, worldY = screenToWorldCoordinates(screenX, screenY) | ||
Converts screen coordinates to world coordinates. | ||
Parameter | Expected Type | Description |
screenX | Number | The x coordinate of a point on the current screen. |
screenY | Number | The y coordinate of a point on the current screen. |
Returns | ||
Returns two values, worldX and worldY. Both are of the type Number. |
Example
local x,y = harvest.screenToWorldCoordinates(mouseX, mouseY) harvest.spawnChargeBomb(x, y)