Difference between revisions of "love.graphics.getModes"
Line 26: | Line 26: | ||
[[Category:Functions]] | [[Category:Functions]] | ||
{{#set:Description=Gets a list of supported fullscreen modes.}} | {{#set:Description=Gets a list of supported fullscreen modes.}} | ||
+ | == Other Languages == | ||
+ | {{i18n|love.graphics.getModes}} |
Revision as of 20:14, 18 November 2010
Gets a list of supported fullscreen modes.
Contents
Function
Synopsis
modes = love.graphics.getModes( )
Arguments
None.
Returns
table modes
- A table of width/height pairs.
Examples
Format of the returned table
modes = love.graphics.getModes()
-- modes = {
-- { width = 320, height = 240 },
-- { width = 640, height = 480 },
-- { width = 800, height = 600 },
-- { width = 1024, height = 768 },
-- ...
-- }
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