Difference between revisions of "love.graphics.getMaxPointSize"

(Add an example, see also)
m
Line 24: Line 24:
 
{{#set:Description=Gets the max supported point size.}}
 
{{#set:Description=Gets the max supported point size.}}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
 +
{{#set:Sub-Category=State}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.graphics.getMaxPointSize}}
 
{{i18n|love.graphics.getMaxPointSize}}

Revision as of 00:54, 29 March 2013

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