Difference between revisions of "love.window.getMode"

(Created page with "{{newin|0.9.0|090|type=function|text=Moved from love.graphics.getMode}} Returns the current display mode. == Function == === Synopsis === <source lang="lua"> width, heig...")
 
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function|text=Moved from [[love.graphics.getMode]]}}
 
{{newin|[[0.9.0]]|090|type=function|text=Moved from [[love.graphics.getMode]]}}
Returns the current display mode.
+
윈도우의 상태에 대해 총괄적으로 조사합니다.
  
== Function ==
+
== 함수 ==
=== Synopsis ===
+
=== 형식 ===
 
<source lang="lua">
 
<source lang="lua">
 
width, height, flags = love.window.getMode( )
 
width, height, flags = love.window.getMode( )
 
</source>
 
</source>
=== Arguments ===
+
=== 매개변수 ===
None.
+
없음.
=== Returns ===
+
=== 리턴값 ===
{{param|number|width|Display width.}}
+
{{param|number (한국어)|width|모니터의 너비.}}
{{param|number|height|Display height.}}
+
{{param|number (한국어)|height|모니터의 높이.}}
{{param|table|flags|The flags table with the options:}}
+
{{param|table (한국어)|flags|[http://ko.wikipedia.org/wiki/%ED%94%8C%EB%9E%98%EA%B7%B8 플래그] 테이블.}}
{{subparam|boolean|fullscreen (false)|Fullscreen (true), or windowed (false).}}
+
{{subparam|boolean (한국어)|fullscreen (false)|전체 화면이면 true, 윈도우면 false.}}
{{subparam|boolean|vsync (true)|True if LÖVE should wait for vsync, false otherwise.}}
+
{{subparam|boolean (한국어)|vsync (true)|수직 동기화 사용 여부.}}
{{subparam|number|fsaa (0)|The number of antialiasing samples.}}
+
{{subparam|number (한국어)|fsaa (0)|앤티 에일리어싱 시 사용되는 샘플 수.}}
{{subparam|boolean|resizable (false)|True if the window should be resizable in windowed mode, false otherwise.}}
+
{{subparam|boolean (한국어)|resizable (false)|윈도우 크기가 변경 가능하면 true.}}
{{subparam|boolean|borderless (false)|True if the window should be borderless in windowed mode, false otherwise.}}
+
{{subparam|boolean (한국어)|borderless (false)|전체 화면 모드가 아닐 때, 윈도우의 테두리가 없다면 true.}}
{{subparam|boolean|centered (true)|True if the window should be centered in windowed mode, false otherwise.}}
+
{{subparam|boolean (한국어)|centered (true)|화면 중앙에 윈도우가 있다면 true.}}
== See Also ==
+
== 같이 보기 ==
* [[parent::love.window]]
+
* [[parent::love.window (한국어)]]
* [[love.window.setMode]]
+
* [[love.window.setMode (한국어)]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Returns the current display mode.}}
+
{{#set:Description=윈도우의 상태에 대해 총괄적으로 조사합니다.}}
== Other Languages ==
+
== 다른 언어 ==
 
{{i18n|love.window.getMode}}
 
{{i18n|love.window.getMode}}

Revision as of 21:32, 11 January 2014

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

윈도우의 상태에 대해 총괄적으로 조사합니다.

함수

형식

width, height, flags = love.window.getMode( )

매개변수

없음.

리턴값

number (한국어) width
모니터의 너비.
number (한국어) height
모니터의 높이.
table (한국어) flags
플래그 테이블.
boolean (한국어) fullscreen (false)
전체 화면이면 true, 윈도우면 false.
boolean (한국어) vsync (true)
수직 동기화 사용 여부.
number (한국어) fsaa (0)
앤티 에일리어싱 시 사용되는 샘플 수.
boolean (한국어) resizable (false)
윈도우 크기가 변경 가능하면 true.
boolean (한국어) borderless (false)
전체 화면 모드가 아닐 때, 윈도우의 테두리가 없다면 true.
boolean (한국어) centered (true)
화면 중앙에 윈도우가 있다면 true.

같이 보기

다른 언어