Difference between revisions of "love.graphics.getMaxPointSize"

m
m (Added deprecation notice)
Line 1: Line 1:
 +
{{deprecatedin|[[0.9.1]]|091|type=function|text=This function will be removed in a future version. Use [[love.graphics.getSystemLimit]] instead}}
 
Gets the max supported point size.
 
Gets the max supported point size.
 
== Function ==
 
== Function ==

Revision as of 23:18, 28 July 2014

Deprecated in LÖVE 0.9.1
This function will be removed in a future version. Use love.graphics.getSystemLimit instead.

Gets the max supported point size.

Function

Synopsis

size = love.graphics.getMaxPointSize( )

Arguments

None.

Returns

number size
The max supported point size.

Examples

Set the point size to the maximum supported size.

local s = love.graphics.getMaxPointSize()
love.graphics.setPointSize(s)

See Also


Other Languages