Difference between revisions of "love.window.getFullscreenModes"
(Added missing display argument) |
Sheepolution (talk | contribs) |
||
Line 5: | Line 5: | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
− | modes = love.window.getFullscreenModes( | + | modes = love.window.getFullscreenModes( displayindex ) |
</source> | </source> | ||
=== Arguments === | === Arguments === | ||
− | {{param|number| | + | {{param|number|displayindex (1)|The index of the display, if multiple monitors are available.}} |
=== Returns === | === Returns === | ||
{{param|table|modes|A table of width/height pairs. (Note that this may not be in order.)}} | {{param|table|modes|A table of width/height pairs. (Note that this may not be in order.)}} |
Latest revision as of 22:59, 24 June 2021
Available since LÖVE 0.9.0 |
Moved from love.graphics.getModes. |
Gets a list of supported fullscreen modes.
Contents
Function
Synopsis
modes = love.window.getFullscreenModes( displayindex )
Arguments
number displayindex (1)
- The index of the display, if multiple monitors are available.
Returns
table modes
- A table of width/height pairs. (Note that this may not be in order.)
Examples
Format of the returned table
modes = love.window.getFullscreenModes()
-- modes = {
-- { width = 320, height = 240 },
-- { width = 640, height = 480 },
-- { width = 800, height = 600 },
-- { width = 1024, height = 768 },
-- ...
-- }
Sort table to ensure it is in order
modes = love.window.getFullscreenModes()
table.sort(modes, function(a, b) return a.width*a.height < b.width*b.height end) -- sort from smallest to largest
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