Difference between revisions of "love.window.getPosition"

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

Revision as of 10:00, 17 February 2015

Available since LÖVE 0.9.2
Diese Funktion wird von älteren Versionen nicht unterstützt.

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