0

I have a SKSpriteNode with a child which is a SKEmitterNode. When the SKSpriteNode touches the right end of the screen I mirror the SKSpriteNode:

bird.xScale = -1

My problem is, that a negative scaling factor makes the SKEmitterNode invisible.

Jonas Ester
  • 535
  • 4
  • 19

1 Answers1

0

Try this:

bird.xScale = bird.xScale * -1
Clinton
  • 1,011
  • 2
  • 7
  • 7