public void UpdateAcceptButton(string yes) { if (acceptButton) { if (string.IsNullOrEmpty(yes)) { acceptButton.SetActive(false); } else { acceptButton.SetActive(true); acceptButton.SetLabel(yes); } } }
public void UpdateDeclineButton(string no) { if (declineButton) { if (string.IsNullOrEmpty(no)) { declineButton.SetActive(false); } else { declineButton.SetActive(true); declineButton.SetLabel(no); } } }