12 [RequireComponent(typeof(
Button))]
40 m_Button = GetComponent<Button>();
48 m_Text = gameObject.GetComponentInChildren<Text>();
51 m_Button.onClick.RemoveAllListeners();
52 m_Button.onClick.AddListener(FireAppendValue);
60 private void FireAppendValue()
69 public void Shift(
bool isShifted)
72 if (isShifted && !
string.IsNullOrEmpty(ShiftValue))
74 m_Text.text = ShiftValue;