Difference between revisions of "love.graphics.getMode"
m |
m |
||
Line 2: | Line 2: | ||
Returns the current display mode. | Returns the current display mode. | ||
== Function == | == Function == | ||
− | |||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
Line 15: | Line 14: | ||
{{param|boolean|vsync|True if vertical sync is enabled or false if disabled.}} | {{param|boolean|vsync|True if vertical sync is enabled or false if disabled.}} | ||
{{param|number|fsaa|The number of FSAA samples.}} | {{param|number|fsaa|The number of FSAA samples.}} | ||
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== See Also == | == See Also == | ||
* [[parent::love.graphics]] | * [[parent::love.graphics]] |
Revision as of 01:45, 6 June 2013
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.
Function
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.
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