Difference between revisions of "love.graphics.setMode"
(Added a note for the magic 0) |
m |
||
Line 11: | Line 11: | ||
{{param|number|height|Display height.}} | {{param|number|height|Display height.}} | ||
{{param|boolean|fullscreen (false)|Fullscreen (true), or windowed (false).}} | {{param|boolean|fullscreen (false)|Fullscreen (true), or windowed (false).}} | ||
− | {{param|boolean|vsync (true)|True if | + | {{param|boolean|vsync (true)|True if LÖVE should wait for vsync, false otherwise.}} |
{{param|number|fsaa (0)|The number of FSAA-buffers.}} | {{param|number|fsaa (0)|The number of FSAA-buffers.}} | ||
=== Returns === | === Returns === |
Revision as of 17:45, 4 August 2012
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 LÖVE 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
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info