2016-12-21 6 views
0

CGPath에 추가 된 각 행마다 lineWidth 및 strokeColor와 같은 속성을 변경할 수 있는지 궁금합니다. 현재 나는이 같은 CGPath를 만듭니다Swift 3 (SpriteKit) : CGPath의 각 행의 속성을 변경합니다.

let path = CGMutablePath() 

points = [CGPoint(x: -372, y: -250), CGPoint(x: 372, y: -250)] 
path.move(to: CGPoint(x: points[0].x, y: points[0].y)) 
//Somewhere here change the properties of the line before adding it 
path.addLine(to: CGPoint(x: points[1].x, y: points[1].y)) 
//Or after here 

Line.path = path 

개별적으로 각 라인의 특성이 CGPath에 추가 변경이 가능, 또는 전체 CGPath가 한 세트 만 색상과 선폭이 있습니까?

답변

0

생각보다 훨씬 나쁩니다. CGPath의 변경 가능한 부분은 거짓말입니다.