Does Corona offer flip image functionality?

Greetings,

I am curious, does Corona have provide horizontal flipping?

If this feature is available, I can use only a set of right-to-right combat animations to achieve a left-right battle.

However, I can’t find the function of turning over Corona.

Someone can give pointers? :ph34r:

Thanks.

You can set the Y scale of the object to -1 to flip it.

object:scale(0, -1)

Rob

Thank Rob. :smiley:

I use object:scale(-1, 1) to horizontal flip.

I almost made two files. :lol:

You’re right, you flip the X scale around the Y axis. 

Rob