Difference between revisions of "love.graphics.setMode"

(Added note)
m
Line 15: Line 15:
  
 
=== Note ===
 
=== Note ===
Unsets certain settings on images, like WrapMode.
+
Unsets certain settings on images, like [[WrapMode]].
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Changes the display mode.}}
 
{{#set:Description=Changes the display mode.}}

Revision as of 15:00, 5 April 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