Removing setFillColor

If you use setFillColor to apply a tint to an image, is there a way to remove that tint and go back to the colors that the image originally was?

Example

blueThing = display.newImageRect(“location”, 50, 50)

blueThing:setFillColor(1,0,0) – now its a red thing

How do you make it a blue thing again? Is there a way to remove the red tint to make it appear exactly as it was before the setFillColor was applied?

setFillColor(1,1,1)

Exactly as @hammod-930 says… or for the most byte-efficient coder:

[lua]

setFillColor(1)

[/lua]

This works in all cases… if you ever need to set all RGB values to the same level, you can state just one parameter.

Brent

setFillColor(1,1,1)

Exactly as @hammod-930 says… or for the most byte-efficient coder:

[lua]

setFillColor(1)

[/lua]

This works in all cases… if you ever need to set all RGB values to the same level, you can state just one parameter.

Brent