Difference between revisions of "love.window.getFullscreenModes (简体中文)"

(english -> 简体中文)
 
m
 
Line 34: Line 34:
 
{{#set:Description=获取能支持的分辨率的列表。}}
 
{{#set:Description=获取能支持的分辨率的列表。}}
 
{{#set:Since=090}}
 
{{#set:Since=090}}
 +
{{#set:PrettySince=0.9.0}}
  
== Other Languages ==
+
== 其他语言 ==
 
{{i18n|love.window.getFullscreenModes}}
 
{{i18n|love.window.getFullscreenModes}}

Latest revision as of 03:03, 16 March 2018

自 LÖVE 0.9.0 可以使用
移动自 love.graphics.getModes.

获取能支持的全屏分辨率的列表。

函数

基础使用

modes = love.window.getFullscreenModes( display )

参数

number display (1)
显示器编号,用于拥有多显示器时。

返回值

table modes
一个包含成对(pairs) 宽/高 的表 (table) (无序)

示例

返回表的格式

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)   -- 从小到大

参见



其他语言