ios – 带有UIBezierPath的SKShapeNode没有完全填充

我想使用带有UIBezierPath的SKShapeNode绘制一个圆形的填充扇区.

在大多数情况下我工作得很好,但是角度较小时,形状没有完全填满(在弧下有一点间隙).像这样:

    

这是我使用的代码:

CGPoint center = CGPointMake(500, 300) ;

UIBezierPath *bezierPath = [UIBezierPath bezierPath];
[bezierPath addArcWithCenter:center radius:400   startAngle:1.825777 endAngle:2.011118 clockwise:YES];
[bezierPath addLineToPoint:center];
[bezierPath closePath];

SKShapeNode *shapeNode = [SKShapeNode shapeNodeWithPath:bezierPath.CGPath];
shapeNode.strokeColor = [UIColor whiteColor];
shapeNode.fillColor = [UIColor whiteColor];
[self addChild:shapeNode];

iPad和模拟器(iOS 8.1)上的结果相同.

我做错了什么或是一些限制或错误?

如果用这些API不能更准确地绘制这个形状,你能不能在SpriteKit游戏的背景下建议一些其他方法来绘制它.

先感谢您.

最佳答案 它可能是一个SKShapeNode错误,请参阅
http://sartak.org/2014/03/skshapenode-you-are-dead-to-me.html

一个修复,是增加SKShapeNode的lineWidth,以填补空白.

shapeNode.lineWidth = 4

您可以使用相同的bezierPath对UIKit执行相同操作,并在drawRect中填充并描绘它.

点赞