Exemple #1
0
 void Awake()
 {
     if (instance != null && instance != this)
     {
         Destroy(this.gameObject);
         return;
     }
     else
     {
         audioSource        = GetComponent <AudioSource>();
         audioSource.volume = PlayerPrefsController.GetMasterMusicInt();
         audioSource.Play();
         instance = this;
     }
     DontDestroyOnLoad(this.gameObject);
 }