Views
love.graphics.setPoint
Sets the point size and style.
Function
Synopsis
love.graphics.setPoint( size, style )
Arguments
number size
- The new point size.
PointStyle style
- The new point style.
Returns
Nothing.
Examples
Increase the point size by 1 and set it to smooth.
local s = love.graphics.getPointSize() + 1
love.graphics.setPoint(s, "smooth")
love.graphics.setPoint(s, "smooth")
See Also