Difference between revisions of "love.graphics.getMode"

m
Line 2: Line 2:
 
Returns the current display mode.
 
Returns the current display mode.
 
== Function ==
 
== Function ==
 +
{{oldin|[[0.9.0]]|090|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 14: Line 15:
 
{{param|boolean|vsync|True if vertical sync is enabled or false if disabled.}}
 
{{param|boolean|vsync|True if vertical sync is enabled or false if disabled.}}
 
{{param|number|fsaa|The number of FSAA samples.}}
 
{{param|number|fsaa|The number of FSAA samples.}}
 +
== Function ==
 +
{{newin|[[0.9.0]]|090|type=variant}}
 +
=== Synopsis ===
 +
<source lang="lua">
 +
width, height, flags = love.graphics.getMode( )
 +
</source>
 +
=== Arguments ===
 +
None.
 +
=== Returns ===
 +
{{param|number|width|Display width.}}
 +
{{param|number|height|Display height.}}
 +
{{param|table|flags|The flags table with the options:}}
 +
{{subparam|boolean|fullscreen (false)|Fullscreen (true), or windowed (false).}}
 +
{{subparam|boolean|vsync (true)|True if LÖVE should wait for vsync, false otherwise.}}
 +
{{subparam|number|fsaa (0)|The number of FSAA-buffers.}}
 +
{{subparam|boolean|resizable (false)|True if the window should be resizable in windowed mode, false otherwise.}}
 +
{{subparam|boolean|borderless (false)|True if the window should be borderless in windowed mode, false otherwise.}}
 +
{{subparam|boolean|centered (true)|True if the window should be centered in windowed mode, false otherwise.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
Line 19: Line 38:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Returns the current display mode.}}
 
{{#set:Description=Returns the current display mode.}}
{{#set:Since=080}}
 
 
{{#set:Sub-Category=Window}}
 
{{#set:Sub-Category=Window}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.graphics.getMode}}
 
{{i18n|love.graphics.getMode}}

Revision as of 08:28, 31 March 2013

Available since LÖVE 0.8.0
This function is not supported in earlier versions.

Returns the current display mode.

Function

Removed in LÖVE 0.9.0
This variant is not supported in that and later versions.

Synopsis

width, height, fullscreen, vsync, fsaa = love.graphics.getMode( )

Arguments

None.

Returns

number width
Display width.
number height
Display height.
boolean fullscreen
Fullscreen (true) or windowed (false).
boolean vsync
True if vertical sync is enabled or false if disabled.
number fsaa
The number of FSAA samples.

Function

Available since LÖVE 0.9.0
This variant is not supported in earlier versions.

Synopsis

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

Arguments

None.

Returns

number width
Display width.
number height
Display height.
table flags
The flags table with the options:
boolean fullscreen (false)
Fullscreen (true), or windowed (false).
boolean vsync (true)
True if LÖVE should wait for vsync, false otherwise.
number fsaa (0)
The number of FSAA-buffers.
boolean resizable (false)
True if the window should be resizable in windowed mode, false otherwise.
boolean borderless (false)
True if the window should be borderless in windowed mode, false otherwise.
boolean centered (true)
True if the window should be centered in windowed mode, false otherwise.

See Also


Other Languages