This is a basic trick, but I can't find any reference of it in the doc, so...
If you want to flip and/or mirror a display object, scale it negatively :
1 2 3 | local img = display.newImage("image.png", 0, 0); img:scale(-1, 1); -- Mirror img:scale(1, -1); -- Flip |
Might be useful to beginners :)
Tom
Cool trick, Tim. Thanks!
Arjan