Difference between revisions of "love.graphics.reset"

Line 15: Line 15:
 
* [[love.graphics.setBackgroundColor]]
 
* [[love.graphics.setBackgroundColor]]
 
* [[love.graphics.setColor]]
 
* [[love.graphics.setColor]]
* [[love.graphics.setLineStipple]]
 
 
* [[love.graphics.setLineStyle]]
 
* [[love.graphics.setLineStyle]]
 
* [[love.graphics.setPointStyle]]
 
* [[love.graphics.setPointStyle]]

Revision as of 10:58, 22 November 2012

Resets the current graphics settings.

Calling reset makes the current drawing color white, the current background color black, resets any active Canvas or PixelEffect, and removes any scissor settings. It sets the BlendMode to alpha and ColorMode to modulate. It also sets both the point and line drawing modes to smooth and their sizes to 1.0.

Function

Synopsis

love.graphics.reset( )

Arguments

None

Returns

Nothing

See Also


Other Languages