I'm creating a fish for an app that swims to random locations on the screen. Before the fish begins swimming towards the next location, it rotates to the angle between its starting point and the target point.

What I'm trying to figure out is: if (target.x < start.x), I need to flip the sprite horizontally.

The problem is, after I create the sprite and addChild to the layer, I can't set the flipX property of the sprite using [sprite setFlipX].

Is setFlipX locked after the sprite is added to the layer? How can I get around this? Is my only solution to animate?

link|improve this question

I did not think FlipX was locked. – Almo Feb 8 at 18:42
It doesn't flip the texture after the sprite is added to the layer, only before – Matisse VerDuyn Feb 8 at 18:44
Are you sure? Usually Cocos2d makes such things readonly. – Almo Feb 8 at 18:46
feedback

2 Answers

up vote 1 down vote accepted

Try flipping it by setting the scaleX to -1:

sprite.scaleX = -1;

Also, for what it's worth, you should be able to set the flipX boolean after a node is added as a child. Something else must be going on if you can't.

link|improve this answer
This won't preserve any scaling that had been done previously. – Danyal Aytekin Feb 9 at 12:34
feedback

To flip and preserve any previous scaling, use:

sprite.scaleX *= -1.f;

It might be obvious that after you've done this you should not use the property sprite.scale any more as it includes an assertion of scaleX == scaleY.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.