Difference between revisions of "Legacy:GetMouseX"

From Spherical
Jump to: navigation, search
m (Added Functions Category tag)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
+
[[Category:Functions]]
  
 
Returns the X coordinate of the pixel the mouse is currently over in the game window or (in fullscreen) screen.
 
Returns the X coordinate of the pixel the mouse is currently over in the game window or (in fullscreen) screen.
Line 6: Line 6:
  
 
==Usage==
 
==Usage==
{{Usage|returns=X|func=GetMouseX}}
+
{{Usage|returns=number|func=GetMouseX}}
  
 
==Examples==
 
==Examples==

Latest revision as of 12:30, 8 September 2013


Returns the X coordinate of the pixel the mouse is currently over in the game window or (in fullscreen) screen.

Usage

number GetMouseX();


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