private void Awake() { if (singleton != null) { Destroy(this); } else { singleton = this; } }
private void Awake() { instance = this; }