ゲームにサウンドを追加しようとすると問題が発生しました。私はこれをビューコントローラに追加しました。ビルドして実行すると、エラーが発生します。私は以下のコード実行したとき:SpriteKitのゲームに音楽を追加する方法
var interstitialAd : GADInterstitial!
var player: AVAudioPlayer!
override func viewDidLoad() {
super.viewDidLoad()
let path = Bundle.main.path(forResource: "gameMusic.mp3", ofType:"mp3")!
let url = URL(fileURLWithPath: path)
do {
let sound = try AVAudioPlayer(contentsOf: url)
player = sound
sound.play()
} catch {
print("file not found")
}
if let view = self.view as! SKView? {
// Load the SKScene from 'GameScene.sks'
を私は次のエラーました:
fatal error: unexpectedly found nil while unwrapping an Optional value 2017-05-21 17:35:01.262683 gameTest2[1660:363851] fatal error: unexpectedly found nil while unwrapping an Optional value
を誰が助けることはできますか?
リソース名から '.mp3'を削除します。 – luk2302