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?