Exemplo n.º 1
0
    void Awake()
    {
        if (instance != null && instance != this)
        {
            Destroy(this.gameObject);
            return;
        }
        else
        {
            instance = this;
        }

        DontDestroyOnLoad(this.gameObject);

        bgmAudio = this.GetComponent <AudioSource>();
    }
Exemplo n.º 2
0
 public void StopBGSound()
 {
     BGaudio.Stop();
 }
Exemplo n.º 3
0
 public void PlayBGSound()
 {
     BGaudio.clip = BGClip;
     BGaudio.Play();
 }