Difference between revisions of "love.graphics.setMode"

m
Line 13: Line 13:
 
=== Returns ===
 
=== Returns ===
 
{{param|boolean|success|True if successful, false otherwise.}}
 
{{param|boolean|success|True if successful, false otherwise.}}
 
 
=== Note ===
 
=== Note ===
 
Unsets certain settings on images, like [[WrapMode]].
 
Unsets certain settings on images, like [[WrapMode]].
Line 20: Line 19:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Changes the display mode.}}
 
{{#set:Description=Changes the display mode.}}
 +
{{#set:Since=000}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.graphics.setMode}}
 
{{i18n|love.graphics.setMode}}

Revision as of 10:21, 25 March 2011

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