Difference between revisions of "love.graphics.setMode"

(Added a note for the magic 0)
Line 1: Line 1:
 
Changes the display mode.
 
Changes the display mode.
 +
 +
If width and height are both 0, setMode will use the resolution of the desktop.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Revision as of 03:50, 7 April 2011

Changes the display mode.

If width and height are both 0, setMode will use the resolution of the desktop.

Function

Synopsis

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

Arguments

number width
Display width.
number height
Display height.
boolean fullscreen (false)
Fullscreen (true), or windowed (false).
boolean vsync (true)
True if LOVE should wait for vsync, false otherwise.
number fsaa (0)
The number of FSAA-buffers.

Returns

boolean success
True if successful, false otherwise.

Note

Unsets certain settings on images, like WrapMode.

See Also


Other Languages