Views
love.graphics.getMaxPointSize
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)
love.graphics.setPointSize(s)
See Also