问题
Is there a way to create a SKSpriteNode and pass it an image name, but have it reflect the image horizontally?
回答1:
You mean you want to flip the image?
node.xScale = node.xScale * -1;
or
node.yScale = node.yScale * -1;
来源:https://stackoverflow.com/questions/21008886/ios-sprite-kit-how-to-reflect-a-sprite-horizontally