Difference between revisions of "love.graphics.getSystemLimits"

(Add argument to synopsis)
m (Fixed parent)
Line 4: Line 4:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
limits = love.graphics.getSystemLimits( limittype )
+
limits = love.graphics.getSystemLimits( )
 
</source>
 
</source>
=== Arguments ===
 
{{param|GraphicsLimit|limittype|The graphics feature to get the maximum value of.}}
 
 
=== Returns ===
 
=== Returns ===
 
{{param|table|limits|A table containing [[GraphicsLimit]] keys, and number values.}}
 
{{param|table|limits|A table containing [[GraphicsLimit]] keys, and number values.}}

Revision as of 04:42, 7 August 2015

Available since LÖVE 0.10.0
It has replaced love.graphics.getSystemLimit.

Gets the system-dependent maximum values for love.graphics features.

Function

Synopsis

limits = love.graphics.getSystemLimits( )

Returns

table limits
A table containing GraphicsLimit keys, and number values.

See Also


Other Languages