Difference between revisions of "love.graphics.setPointSize"

m
m
Line 24: Line 24:
 
{{#set:Description=Sets the point size.}}
 
{{#set:Description=Sets the point size.}}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
 +
{{#set:Sub-Category=State}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.graphics.setPointSize}}
 
{{i18n|love.graphics.setPointSize}}

Revision as of 01:03, 29 March 2013

Sets the point size.

Function

Synopsis

love.graphics.setPointSize( size )

Arguments

number size
The new point size.

Returns

Nothing.

Examples

Increase the point size by 1, by using love.graphics.getPointSize.

local s = love.graphics.getPointSize() + 1
love.graphics.setPointSize(s)

See Also


Other Languages