Difference between revisions of "love.window.getMode"
(Undo revision 12606 by Bangseongbeom (talk)) |
|||
Line 1: | Line 1: | ||
{{newin|[[0.9.0]]|090|type=function|text=Moved from [[love.graphics.getMode]]}} | {{newin|[[0.9.0]]|090|type=function|text=Moved from [[love.graphics.getMode]]}} | ||
− | + | Returns the current display mode. | |
− | == | + | == Function == |
− | === | + | === Synopsis === |
<source lang="lua"> | <source lang="lua"> | ||
width, height, flags = love.window.getMode( ) | width, height, flags = love.window.getMode( ) | ||
</source> | </source> | ||
− | === | + | === Arguments === |
− | + | None. | |
− | === | + | === Returns === |
− | {{param|number | + | {{param|number|width|Display width.}} |
− | {{param|number | + | {{param|number|height|Display height.}} |
− | {{param|table | + | {{param|table|flags|The flags table with the options:}} |
− | {{subparam|boolean | + | {{subparam|boolean|fullscreen (false)|Fullscreen (true), or windowed (false).}} |
− | {{subparam|boolean | + | {{subparam|boolean|vsync (true)|True if LÖVE should wait for vsync, false otherwise.}} |
− | {{subparam|number | + | {{subparam|number|fsaa (0)|The number of antialiasing samples.}} |
− | {{subparam|boolean | + | {{subparam|boolean|resizable (false)|True if the window should be resizable in windowed mode, false otherwise.}} |
− | {{subparam|boolean | + | {{subparam|boolean|borderless (false)|True if the window should be borderless in windowed mode, false otherwise.}} |
− | {{subparam|boolean | + | {{subparam|boolean|centered (true)|True if the window should be centered in windowed mode, false otherwise.}} |
− | == | + | == See Also == |
− | * [[parent::love.window | + | * [[parent::love.window]] |
− | * [[love.window.setMode | + | * [[love.window.setMode]] |
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description= | + | {{#set:Description=Returns the current display mode.}} |
− | == | + | == Other Languages == |
{{i18n|love.window.getMode}} | {{i18n|love.window.getMode}} |
Revision as of 21:32, 11 January 2014
Available since LÖVE 0.9.0 |
Moved from love.graphics.getMode. |
Returns the current display mode.
Function
Synopsis
width, height, flags = love.window.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 antialiasing samples.
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