love.graphics.setColorMode( mode )
The color mode controls how the current color affects elements.
Usage
love.graphics.setColorMode( mode )
Arguments
modeThe color mode.
Returns
Nothing
Examples
Example 1:
function draw()
-- Enable color modulation. Images and animations will
-- will be affected by the current color.
love.graphics.setColorMode(love.color_modulate)
love.graphics.draw(image, ... ) -- etc
end