Centering the camera on a sprite

Games often require the camera to follow the player sprite as it moves through space. We definitely want this camera behavior for Pierre, our penguin character, whom we will soon be adding to the game. With iOS9, Apple added a new SKCameraNode class, which makes this task easy. We will attach an SKCameraNode to our scene and position it directly over the player to keep their character centered in the view.

You can find the code for our camera functionality in the following code block. Read the comments for a detailed explanation. This is a quick recap of the changes:

  • Our didMove function was becoming too crowded. We broke out our flying bee code into a new function named addTheFlyingBee. Later, we will encapsulate ...

Get Swift Game Development - Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.