Difference between revisions of "love.graphics.getSystemLimits"

(Created page)
 
(Add argument to synopsis)
Line 4: Line 4:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
limits = love.graphics.getSystemLimits( )
+
limits = love.graphics.getSystemLimits( limittype )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===

Revision as of 14:52, 6 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( limittype )

Arguments

GraphicsLimit limittype
The graphics feature to get the maximum value of.

Returns

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

See Also


Other Languages