我对这里发生的事情感到困惑。我知道它应该是一些坐标偏移,但是当我使用一个圆圈作为路径时,它会准确地追踪它。如果我使用如下曲线,这就是我得到的结果。我只想绘制曲线然后让精灵能够追踪曲线。有什么想法有什么问题吗?
// CGPathRef circle = CGPathCreateWithEllipseInRect(CGRectMake(0,0,400,400), NULL);
CGMutablePathRef circle = CGPathCreateMutable();
CGPathMoveToPoint(circle, NULL, 0, 0);
CGPathAddQuadCurveToPoint(circle, NULL, 200, 200, 265, 20);
SKAction *followTrack = [SKAction followPath:circle asOffset:NO orientToPath:YES duration:1.0];
SKAction *forever = [SKAction repeatActionForever:followTrack];
[MySprite runAction:forever];