Difference between revisions of "love.window.getDesktopDimensions"
(Created page) |
m (Explicitly specify which one is the first index) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
− | width, height = love.window.getDesktopDimensions( | + | width, height = love.window.getDesktopDimensions( displayindex ) |
</source> | </source> | ||
=== Arguments === | === Arguments === | ||
− | {{param|number| | + | {{param|number|displayindex (1)|The index of the display, if multiple monitors are available. First is 1.}} |
=== Returns === | === Returns === | ||
{{param|number|width|The width of the desktop.}} | {{param|number|width|The width of the desktop.}} | ||
{{param|number|height|The height of the desktop.}} | {{param|number|height|The height of the desktop.}} | ||
+ | == Examples == | ||
+ | === Show the resolution of the monitor the window is currently in === | ||
+ | <source lang="lua"> | ||
+ | function love.draw() | ||
+ | local _, _, flags = love.window.getMode() | ||
+ | |||
+ | -- The window's flags contain the index of the monitor it's currently in. | ||
+ | local width, height = love.window.getDesktopDimensions(flags.display) | ||
+ | |||
+ | love.graphics.print(("display %d: %d x %d"):format(flags.display, width, height), 4, 10) | ||
+ | end | ||
+ | </source> | ||
+ | |||
== See Also == | == See Also == | ||
* [[parent::love.window]] | * [[parent::love.window]] |
Latest revision as of 17:46, 25 April 2023
Available since LÖVE 0.9.0 |
This function is not supported in earlier versions. |
Gets the width and height of the desktop.
Contents
Function
Synopsis
width, height = love.window.getDesktopDimensions( displayindex )
Arguments
number displayindex (1)
- The index of the display, if multiple monitors are available. First is 1.
Returns
Examples
Show the resolution of the monitor the window is currently in
function love.draw()
local _, _, flags = love.window.getMode()
-- The window's flags contain the index of the monitor it's currently in.
local width, height = love.window.getDesktopDimensions(flags.display)
love.graphics.print(("display %d: %d x %d"):format(flags.display, width, height), 4, 10)
end
See Also
Other Languages
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