Difference between revisions of "love.graphics.setMode"
m |
m |
||
Line 33: | Line 33: | ||
{{subparam|number|fsaa (0)|The number of FSAA-buffers.}} | {{subparam|number|fsaa (0)|The number of FSAA-buffers.}} | ||
{{subparam|boolean|resizable (false)|True if the window should be resizable in windowed mode, false otherwise.}} | {{subparam|boolean|resizable (false)|True if the window should be resizable in windowed mode, false otherwise.}} | ||
− | {{subparam|boolean|borderless (false)| | + | {{subparam|boolean|borderless (false)|True if the window should be borderless in windowed mode, false otherwise.}} |
− | {{subparam|boolean|centered (true)| | + | {{subparam|boolean|centered (true)|True if the window should be centered in windowed mode, false otherwise.}} |
=== Returns === | === Returns === | ||
{{param|boolean|success|True if successful, false otherwise.}} | {{param|boolean|success|True if successful, false otherwise.}} |
Revision as of 07:54, 31 March 2013
Changes the display mode.
If width or height is 0, setMode will use the width or height of the desktop.
Changing the display mode may have side effects: for example, canvases will be cleared; make sure to save their contents beforehand.
Contents
Function
Removed in LÖVE 0.9.0 |
This variant is not supported in that and later versions. |
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.
Function
Available since LÖVE 0.9.0 |
This variant is not supported in earlier versions. |
Synopsis
success = love.graphics.setMode( width, height, flags )
Arguments
number width
- Display width.
number height
- Display height.
table flags
- The flags table with the options:
boolean fullscreen
- 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.
boolean resizable (false)
- True if the window should be resizable in windowed mode, false otherwise.
boolean borderless (false)
- True if the window should be borderless in windowed mode, false otherwise.
boolean centered (true)
- True if the window should be centered in windowed mode, false otherwise.
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