Hello
I am working on a project, where I am setting up couple of scenes in which each one has a different audio file as a background music.
When I enter each scene for the first time everything works great but when i go back and enter a previous scene the audio never start again.
I tried using things like audio.dispose() or audio.stop() but when calling back the audio.play() nothing is played.
I am using at the end of the scene audio.fadeOut(), can this be the cause of the problem?
For some reason it seems that either the channels are not being freed when calling audio.fadeOut or audio.stop(), or I am using global vars that are not being reset.
What can be the problem?