Difference between revisions of "love.graphics.getModes"

m (1 revision: Importing from potato (again).)
m
 
(8 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 +
{{oldin|[[0.9.0]]|090|type=function|text=Moved to the [[love.window]] module as [[love.window.getFullscreenModes]]}}
  
 
Gets a list of supported fullscreen modes.
 
Gets a list of supported fullscreen modes.
Line 9: Line 10:
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|table|modes|A table of width/height pairs.}}
+
{{param|table|modes|A table of width/height pairs. (Note that this may not be in order.)}}
 
== Examples ==
 
== Examples ==
 
=== Format of the returned table ===
 
=== Format of the returned table ===
Line 16: Line 17:
  
 
-- modes = {
 
-- modes = {
-- { width = 800, height = 800 },
+
-- { width = 320, height = 240 },
-- { width = 1024, height = 767 },
+
-- { width = 640, height = 480 },
 +
-- { width = 800, height = 600 },
 +
-- { width = 1024, height = 768 },
 
-- ...
 
-- ...
 
-- }
 
-- }
 +
</source>
 +
=== Sort table to ensure it is in order ===
 +
<source lang="lua">
 +
modes = love.graphics.getModes()
 +
table.sort(modes, function(a, b) return a.width*a.height < b.width*b.height end)  -- sort from smallest to largest
 
</source>
 
</source>
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 +
* [[love.graphics.checkMode]]
 +
* [[love.graphics.setMode]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Gets a list of supported fullscreen modes.}}
 
{{#set:Description=Gets a list of supported fullscreen modes.}}
 +
{{#set:Since=000}}
 +
{{#set:Sub-Category=Window}}
 +
== Other Languages ==
 +
{{i18n|love.graphics.getModes}}

Latest revision as of 01:18, 30 August 2013

Removed in LÖVE 0.9.0
Moved to the love.window module as love.window.getFullscreenModes.


Gets a list of supported fullscreen modes.

Function

Synopsis

modes = love.graphics.getModes( )

Arguments

None.

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.graphics.getModes()

-- 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.graphics.getModes()
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