Difference between revisions of "love.graphics.setMode"
(From 0.7.0 changelog: "Fixed setMode removing images settings (wrapping, filters).") |
|||
Line 1: | Line 1: | ||
Changes the display mode. | Changes the display mode. | ||
− | If width | + | If width or height is 0, setMode will use the width or height of the desktop. |
== Function == | == Function == | ||
=== Synopsis === | === Synopsis === |
Revision as of 15:42, 12 December 2012
Changes the display mode.
If width or height is 0, setMode will use the width or height 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.
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