Function
love.filesystem.setColor( red, green, blue, alpha )
Sets the color used for drawing.
Synopsis
love.filesystem.setColor( red, green, blue, alpha )
Parameters
red number The amount of red.
green number The amount of green.
blue number The amount of blue.
alpha = 255 number The amount of alpha.
Examples
Set draw a red circle and a blue one
  1. love.graphics.setColor(255, 0, 0)
  2. love.graphics.circle(50, 50, 20, 20)
  3. love.graphics.setColor(0, 0, 255)
  4. love.graphics.circle(50, 100, 20, 20)
Copyright © 2006-2009 LÖVE Development Team.