void Awake() { if (instance != null && instance != this) { Destroy(this.gameObject); return; } else { instance = this; } DontDestroyOnLoad(this.gameObject); transform.parent = null; }
private void Start() { perStats = GameObject.Find("PersistentStats").GetComponent <PersistentStats>(); }