UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

background music doesn't restart after phone call interruption.

Forums > Swift

I have background music playing on a loop during a blackjack app but when a phone call is recieved the music does not restart. The loop is in the form of a SKAudioNode which seems to work well in conjuction with other audio that occurs as the game is played. I found using audioPlayer for background music caused it to stop when the sound file for placing chips etc is played. The rest of the game works fine after disconnecting the phone call. Exiting the app and then restarting still doesnt restart the background music. Is there a function for handling this type of interruption so the music starts where it left off ?

    var backgroundMusic: SKAudioNode!

    override func didMove(to view: SKView) {
    if let musicURL = Bundle.main.url(forResource: "playlistbj", withExtension: "mp3") {
    backgroundMusic = SKAudioNode(url: musicURL)
        addChild(backgroundMusic)}

}

2      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.