Difference between revisions of "love.graphics.setMode"

m
m
Line 20: Line 20:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Changes the display mode.}}
 
{{#set:Description=Changes the display mode.}}
 +
== Other Languages ==
 +
{{i18n|love.graphics.setMode}}

Revision as of 20:24, 18 November 2010

Changes the display mode.

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