Im using this code to add background music to my game levels
[self runAction:[SKAction playSoundFileNamed:@"dasdas.mp3" waitForCompletion:NO]];
I want it to stop when Game Over happens. Is there a way to cancel/stop the SKAction
, lower volume, anything to stop it?
Thanks