Difference between revisions of "love.window.getFullscreenModes (한국어)"

(Created page with "{{newin|0.9.0|090|type=function|text=Moved from love.graphics.getModes}} 지원하는 normal 풀스크린 해상도 리스트를 구합니다. == 함수 == === 형식 ==...")
 
m
 
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function|text=Moved from [[love.graphics.getModes]]}}
 
{{newin|[[0.9.0]]|090|type=function|text=Moved from [[love.graphics.getModes]]}}
  
지원하는 normal 풀스크린 해상도 리스트를 구합니다.
+
[FullscreenType (한국어)|normal 모드]에서 사용 가능한 해상도 리스트를 구합니다.
 
== 함수 ==
 
== 함수 ==
 
=== 형식 ===
 
=== 형식 ===
Line 33: Line 33:
 
* [[love.window.setMode (한국어)]]
 
* [[love.window.setMode (한국어)]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=지원하는 normal 풀스크린 해상도 리스트를 구합니다.}}
+
{{#set:Description=normal 모드에서 사용 가능한 해상도 리스트를 구합니다.}}
 
{{#set:Since=090}}
 
{{#set:Since=090}}
  
 
== 다른 언어 ==
 
== 다른 언어 ==
 
{{i18n|love.window.getFullscreenModes}}
 
{{i18n|love.window.getFullscreenModes}}

Latest revision as of 20:50, 11 January 2014

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)   -- 작은 크기에서 큰 크기 순으로 정렬

같이 보기


다른 언어