love.graphics.getModes (日本語)

LÖVE 0.9.0 から廃止
love.window モジュールの love.window.getFullscreenModes へ名称変更。


対応しているフルスクリーンモードの一覧を取得します。

関数

概要

modes = love.graphics.getModes( )

引数

なし。

返値

table modes
幅と高さを組み合わせから成るテーブル (これの順序は未整列である場合があることに注意してください)。

用例

返されたテーブル(表)を整形します

modes = love.graphics.getModes()

-- modes = {
-- 	{ width = 320, height = 240 },
-- 	{ width = 640, height = 480 },
-- 	{ width = 800, height = 600 },
-- 	{ width = 1024, height = 768 },
-- 	...
-- }

テーブルが確実に順番に整列されるようにするには

modes = love.graphics.getModes()
table.sort(modes, function(a, b) return a.width*a.height < b.width*b.height end)   -- 小さいほうから大きい方へ整列します。

関連



そのほかの言語