Version 0.3.2
LÖVE Documentation
OverviewLicenseCreditsInstallingGetting started
Devices
love.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timerlove.system
Types
AnimationColorFontFileImageMusicParticleSystemSound
Callbacks
loadupdatedrawmousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig filesKeyboard shortcuts
Function
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