Parallax background layers

Parallax adds the feeling of depth to your game by drawing separate background layers and moving them past the camera at varying speeds. Very slow backgrounds give the illusion of distance, while fast moving backgrounds appear to be very close to the player. We can enhance the effect by painting faraway objects with increasingly desaturated colors.

In our game, we will achieve the parallax effect by attaching our backgrounds to the world, then slowly pushing the backgrounds to the right as the world moves left. As the world moves to the left (bringing the backgrounds with it), we will move the background's x position to the right so that the total movement is less than for the normal game objects. The result will be background ...

Get Game Development with Swift 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.