Difference between revisions of "Legacy:GetMouseY"
From Spherical
m (Added Functions Category) |
m (Fixed link to GetMouseX in "See Also") |
||
Line 21: | Line 21: | ||
==See also== | ==See also== | ||
− | * [[API: | + | * [[API:GetMouseX|GetMouseX]]() |
* [[API:SetMousePosition|SetMousePosition]](x, y) | * [[API:SetMousePosition|SetMousePosition]](x, y) |
Latest revision as of 12:30, 8 September 2013
Returns the Y coordinate of the pixel the mouse is currently over in the game window or (in fullscreen) screen.
Contents
Usage
number GetMouseY();
Examples
Color the pixel on the screen that the mouse is currently on:
var Red = CreateColor(255, 0, 0, 255);
Point(GetMouseX(), GetMouseY(), Red);
Notes
Mouse coordinates will not be tracked when the mouse is out of the window.
See also
- GetMouseX()
- SetMousePosition(x, y)