Difference between revisions of "GetCursorPos"

From The Official Visionaire Studio: Adventure Game Engine Wiki
(Created page with "<b>History</b>: Available since <span style="color:green">v3.7</span> Stores the current position (absolute) of the mouse cursor into an x,y table which can be used in query ...")
 
Line 20: Line 20:
 
end
 
end
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
  
 
<b><u>Arguments</u></b>
 
<b><u>Arguments</u></b>

Revision as of 18:24, 5 March 2013

History: Available since v3.7

Stores the current position (absolute) of the mouse cursor into an x,y table which can be used in query to check if the current position is over an object/character or certain part of the scene etc.

Syntax:

getCursorPos()

Example:

-- let's store the current position in a variable!
local variableName = getCursorPos()

-- let's check if the stored cursor position equals another x,y value!
if variableName.x == 200 and variableName.y == 400 then
 -- do some action!
else
 -- do some other action!
end


Arguments

Flags: none

Return: Pos
Table containing x,y values of current mouse cursor position