void Awake() { if (instance != null && instance != this) { Destroy(this.gameObject); return; } else { instance = this; } DontDestroyOnLoad(this.gameObject); }
// Start is called before the first frame update void Start() { myMusic = GameObject.FindObjectOfType <BGSound>(); myBGM = GameObject.FindObjectOfType <AudioSource>(); UpdateIcon(); }