Difference between revisions of "love.graphics.getMode"

(getMode!)
 
(Added a see also.)
Line 16: Line 16:
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 +
* [[love.graphics.setMode]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Returns the current display mode.}}
 
{{#set:Description=Returns the current display mode.}}

Revision as of 22:09, 14 July 2011

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

Returns the current display mode.

Function

Synopsis

width, height, fullscreen, vsync, fsaa = love.graphics.getMode( )

Arguments

None.

Returns

number width
Display width.
number height
Display height.
boolean fullscreen
Fullscreen (true) or windowed (false).
boolean vsync
True if vertical sync is enabled or false if disabled.
number fsaa
The number of FSAA samples.

See Also


Other Languages