I have an SKShapeNode, defined by a circleWithRadius. When I try to modify the color of node with node.fillColor
, gets filled the entire area around the circle, not just the area defined by circle path. My question is: how can I fill just the inner area of node?
Edit
Here is my code:
let bigCirle = SKShapeNode(circleOfRadius: baseControlerRadius)
bigCirle.position = CGPointMake(self.view!.frame.size.width * 0.85, (self.view?.frame.size.height)! * 0.15)
bigCirle.fillColor = SKColor.blueColor()
bigCirle.name = bigCircleControlerSKNodeName
self.addChild(bigCirle)