love.graphics.getMode
Available since LÖVE 0.8.0 |
This function is not supported in earlier versions. |
Removed in LÖVE 0.9.0 |
Moved to the love.window module as love.window.getMode. |
Returns the current display mode.
Contents
Function
Removed in LÖVE 0.9.0 |
This variant is not supported in that and later versions. |
Synopsis
width, height, fullscreen, vsync, fsaa = love.graphics.getMode( )
Arguments
None.
Returns
number width
- Display width.
number height
- Display height.
boolean fullscreen
- Fullscreen (true) or windowed (false).
boolean vsync
- True if vertical sync is enabled or false if disabled.
number fsaa
- The number of FSAA samples.
Function
Available since LÖVE 0.9.0 |
This variant is not supported in earlier versions. |
Synopsis
width, height, flags = love.graphics.getMode( )
Arguments
None.
Returns
number width
- Display width.
number height
- Display height.
table flags
- The flags table with the options:
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.
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.
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