Playing sound effects
Playing simple sounds is even easier. We will use SKAction
objects to play sounds on specific events, such as when picking up a coin or starting the game.
Adding the coin sound effect to the Coin class
First, we will add a happy sound each time the player collects a coin. To add the coin sound effect, follow these steps:
- Open
Coin.swift
and add a new property to theCoin
class to cache a coin sound action:let coinSound = SKAction.playSoundFileNamed("Sound/Coin.aif", waitForCompletion: false)
- Locate the
collect
function and add the following line at the bottom of the function to play the sound:// Play the coin sound: self.run(coinSound)
That is all you need to do to play the coin sound every time the player collects a coin. ...
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.