Difference between revisions of "love.graphics.getModes"

(Add slime's sorting example)
m
Line 34: Line 34:
 
{{#set:Description=Gets a list of supported fullscreen modes.}}
 
{{#set:Description=Gets a list of supported fullscreen modes.}}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
 +
{{#set:Sub-Category=Window}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.graphics.getModes}}
 
{{i18n|love.graphics.getModes}}

Revision as of 00:43, 29 March 2013

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