1
我的SKSpriteNode沿着逆時針方向的這條路徑,我該如何使它沿着順時針方向方向的路徑?SKAction沿順時針方向循環CGPathRef
在此先感謝!
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];
Thanks Ma rtin,你能提供一些代碼嗎? – user1216855
@ user1216855:查看更新後的答案,我希望它能起作用! –
謝謝馬丁,它完美的作品! – user1216855