how to make music stay betwenn scene changes but only in specific code example
Example: music that stays when you change scene unity
using UnityEngine;
public class MusicClass : MonoBehaviour {
private AudioSource _audioSource;
private void Awake()
{
DontDestroyOnLoad(transform.gameObject);
_audioSource = GetComponent<AudioSource>();
}
public void PlayMusic()
{
if (_audioSource.isPlaying) return;
_audioSource.Play();
}
public void StopMusic()
{
_audioSource.Stop();
}
}