Difference between revisions of "StackType"

(Created page)
 
m
Line 11: Line 11:
 
* [[love.graphics.setColor|current color]]
 
* [[love.graphics.setColor|current color]]
 
* [[love.graphics.setColorMask|color mask]]
 
* [[love.graphics.setColorMask|color mask]]
 +
* [[love.graphics.setDefaultFilter|default filter mode]]
 
* [[love.graphics.setFont|active font]]
 
* [[love.graphics.setFont|active font]]
 
* [[love.graphics.setLineJoin|line join mode]]
 
* [[love.graphics.setLineJoin|line join mode]]

Revision as of 04:31, 29 August 2014

Available since LÖVE 0.9.2
This enum is not supported in earlier versions.

Graphics state stack types used with love.graphics.push.

Constants

transform
The transformation stack (love.graphics.translate, love.graphics.rotate, etc.)
all
All love.graphics state, including transform state.

Notes

Aside from the graphics transform state, the all enum affects the following:

See Also

Other Languages