Last active
February 22, 2018 19:53
-
-
Save jamiegilmartin/79e84766cfe8cdca41e7db35bcdf1bcb to your computer and use it in GitHub Desktop.
SKShapeNode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let node = SKShapeNode(circleOfRadius: radius) | |
| node.position = p1 | |
| node.glowWidth = 1.0 | |
| node.strokeColor = .white | |
| node.lineWidth = 2 | |
| node.fillColor = .clear | |
| node.alpha = 0.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment