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

            DontDestroyOnLoad(this.gameObject);
        }
Ejemplo n.º 2
0
 // Start is called before the first frame update
 void Start()
 {
     myMusic = GameObject.FindObjectOfType <BGSound>();
     myBGM   = GameObject.FindObjectOfType <AudioSource>();
     UpdateIcon();
 }