public class AudioFon : MonoBehaviour
{
private AudioSource m_Source;
private static AudioFon af = null;
private void Awake()
{
if (af == null) af = this;
else Destroy(gameObject);
DontDestroyOnLoad(gameObject);
m_Source = GetComponent<AudioSource>();
}
}