Esempio n. 1
0
	// Use this for initialization
	private void Start ()
	{
		if (buttons == null)
		{
			buttons = GameUI.GetItemButtons(buttonsPoint ? buttonsPoint : gameObject);
			buttons.confirm.onClick.AddListener(Confirm);
			buttons.reject.onClick.AddListener(Reject);
		}
	}
Esempio n. 2
0
	public void OnDestroy ()
	{
		if (buttons)
		{
			Destroy(buttons.gameObject);
			buttons = null;
		}
	}