My SKSpriteNode follows this path in a counterclockwise direction, how do i make it so it follows the path in a clockwise direction?
Thanks in advance!
CGPathRef circle = CGPathCreateWithEllipseInRect(CGRectMake(0,0,50,50), NULL);
SKAction *followTrack = [SKAction followPath:circle asOffset:YES orientToPath:YES duration:5.0];
SKAction *forever = [SKAction repeatActionForever:followTrack];
[player2 runAction:forever];