Difference between revisions of "love.window.getPosition"

(Undo revision 14734 by Rmcode (talk))
m
Line 2: Line 2:
 
Gets the position of the window on the screen.
 
Gets the position of the window on the screen.
  
The window position is in the coordinate space of the display it's currently in.
+
The window position is in the coordinate space of the display it is currently in.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Revision as of 10:35, 25 March 2015

Available since LÖVE 0.9.2
This function is not supported in earlier versions.

Gets the position of the window on the screen.

The window position is in the coordinate space of the display it is currently in.

Function

Synopsis

x, y, display = love.window.getPosition( )

Arguments

None.

Returns

number x
The x-coordinate of the window's position.
number y
The y-coordinate of the window's position.
number display
The index of the display that the window is in.

See Also

Other Languages