Difference between revisions of "love.graphics.getModes"
m (1 revision: Imported docs from potato.) |
|
(No difference)
|
Revision as of 15:54, 14 February 2010
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 = 800, height = 800 },
-- { width = 1024, height = 767 },
-- ...
-- }