Difference between revisions of "love.graphics.setMode"
m |
m |
||
Line 7: | Line 7: | ||
Changing the display mode may have side effects: for example, [[canvas]]es will be cleared; make sure to save their contents beforehand. | Changing the display mode may have side effects: for example, [[canvas]]es will be cleared; make sure to save their contents beforehand. | ||
== Function == | == Function == | ||
− | |||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
Line 18: | Line 17: | ||
{{param|boolean|vsync (true)|True if LÖVE should wait for vsync, false otherwise.}} | {{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 === | ||
{{param|boolean|success|True if successful, false otherwise.}} | {{param|boolean|success|True if successful, false otherwise.}} |
Revision as of 01:27, 6 June 2013
Removed in LÖVE 0.9.0 |
Moved to the love.window module as love.window.setMode. |
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.
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