Song Manager
Component that handles the audio playback and the timing for synchronization.
Last updated
Component that handles the audio playback and the timing for synchronization.
Last updated
void SomeMethod() {
...
songManager.PlaySong(songItem);
...
}void SomeMethod() {
...
songManager.PauseSong();
...
}void SomeMethod() {
...
songManager.ResumeSong();
...
}void SomeMethod() {
...
songManager.StopSong();
...
}