-3
ある座標から次の座標に線を描きたいと思います。トリックを行う必要がありますキットを使用してSwift 3に線を描くスプライト
ある座標から次の座標に線を描きたいと思います。トリックを行う必要がありますキットを使用してSwift 3に線を描くスプライト
var aPath = UIBezierPath()
aPath.moveToPoint(CGPoint(x:/*Put starting Location*/ y:/*Put starting Location*/))
aPath.addLineToPoint(CGPoint(x:/*Put Next Location*/ y:/*Put Next Location*/))
//Keep using the method addLineToPoint until you get to the one where about to close the path
aPath.closePath()
//If you want to stroke it with a red color
UIColor.redColor().set()
aPath.stroke()
//If you want to fill it as well
aPath.fill()
}
それはSpriteKitベースではありません – iLandes
参照:http://stackoverflow.com/questions/19092011/how-to-draw-a-line-in-sprite-kit?rq=1 – iLandes