Swift version: 5.2
SpriteKit comes with a modified version of the Box2D physics framework, and it's wrapped up a lot of complicated physics mathematics into just one or two lines of code. For example, we can create a square, red sprite and give it rectangular physics like this:
let box = SKSpriteNode(color: UIColor.red, size: CGSize(width: 64, height: 64))
box.physicsBody = SKPhysicsBody(rectangleOf: CGSize(width: 64, height: 64))
That rectangle will wrap perfectly around the box's color, so it will bounce and rotate as it collides with other objects in your scene.
If you want to create circular physics to simulate balls, this is done using the circleOfRadius
constructor:
let ball = SKSpriteNode(imageNamed: "ballRed")
ball.physicsBody = SKPhysicsBody(circleOfRadius: ball.size.width / 2.0)
SPONSORED Would you describe yourself as knowledgeable, but struggling when you have to come up with your own code? Fernando Olivares has a new book containing iOS rules you can immediately apply to your coding habits to see dramatic improvements, while also teaching applied programming fundamentals seen in refactored code from published apps.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 7.0 – see Hacking with Swift tutorial 11
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.