private void Awake() { if ( instance == null ) instance = this; else { Destroy( instance.gameObject ); instance = this; } }
public void DeleteRightClick() { // Debug.Log("Delete Right Click ran"); instance = null; Destroy(this.gameObject); }