love.window.getFullscreenModes (한국어)

Available since LÖVE 0.9.0
Moved from love.graphics.getModes.


[FullscreenType (한국어)|normal 모드]에서 사용 가능한 해상도 리스트를 구합니다.

함수

형식

modes = love.window.getFullscreenModes( )

매개변수

없음.

리턴값

table (한국어) modes
높이・너비 쌍 테이블. (순서대로 정렬되어 있지 않을 수도 있음.)

예제

리턴되는 테이블의 생김새

modes = love.window.getFullscreenModes()

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

순서대로 정렬

modes = love.window.getFullscreenModes()
table.sort(modes, function(a, b) return a.width*a.height < b.width*b.height end)   -- 작은 크기에서 큰 크기 순으로 정렬

같이 보기


다른 언어