Difference between revisions of "love.window.getDesktopDimensions (简体中文)"
(english -> 简体中文) |
(english -> 简体中文) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{newin|[[0.9.0]]|090|type= | + | {{newin (简体中文)|[[0.9.0]]|090|type=函数}} |
获取桌面(显示器)的宽和高 | 获取桌面(显示器)的宽和高 | ||
== 函数 == | == 函数 == | ||
Line 25: | Line 25: | ||
== 参见 == | == 参见 == | ||
− | * [[parent::love. | + | * [[parent::love.window (简体中文)]] |
[[Category:Functions]] | [[Category:Functions]] | ||
+ | {{#set:Since=090}} | ||
+ | {{#set:PrettySince=0.9.0}} | ||
{{#set:Description=获取桌面(显示器)的宽和高)}} | {{#set:Description=获取桌面(显示器)的宽和高)}} | ||
− | == | + | == 其他语言 == |
{{i18n|love.window.getDesktopDimensions}} | {{i18n|love.window.getDesktopDimensions}} |
Latest revision as of 15:00, 14 March 2018
自 LÖVE 0.9.0 可以使用 |
此 函数 在早期版本中不受支持. |
获取桌面(显示器)的宽和高
函数
基础使用
width, height = love.window.getDesktopDimensions( display )
参数
number display (1)
- 显示器的编号,用于拥有多个显示器时
返回值
示例
输出当前窗口所在显示器的分辨率
function love.draw()
local _, _, flags = love.window.getMode()
-- 当前窗口的flags(table)值中包含了当前所在显示器的编号
local width, height = love.window.getDesktopDimensions(flags.display)
love.graphics.print(("display %d: %d x %d"):format(flags.display, width, height), 4, 10)
end
参见
其他语言
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info