Difference between revisions of "love.window.getPosition"

m (Add translated text to newin template.)
(Undo revision 14734 by Rmcode (talk))
Line 1: Line 1:
{{newin|[[0.9.2]]|092|type=function|text=Diese Funktion wird von älteren Versionen nicht unterstützt}}
+
{{newin|[[0.9.2]]|092|type=function}}
 
Gets the position of the window on the screen.
 
Gets the position of the window on the screen.
  

Revision as of 10:01, 17 February 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's 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