private void OnLongTap(BtnShortcut arg0) { shortcut_index.Value = arg0.btn_index; shortcut_serial.Value = arg0.item_serial; //Debug.Log(arg0.btn_index); if (arg0.item_serial != 0) { Fsm.Event("shortcut_detail"); } else { Fsm.Event("shortcut_set"); } }
private void OnShortcut(BtnShortcut arg0) { shortcut_index.Value = arg0.btn_index; shortcut_serial.Value = arg0.item_serial; //Debug.Log(shortcut_index.Value); //Debug.Log(shortcut_serial.Value); if (arg0.item_serial != 0) { Fsm.Event("shortcut"); } else { Fsm.Event("shortcut_set"); } }
void HandleLongTap(BtnShortcut _shortcut) { //Debug.Log("longtap:" + _shortcut.btn_index.ToString()); OnLongTap.Invoke(_shortcut); }
void HandleShortcut(BtnShortcut _shortcut) { //Debug.Log("shortcut:" + _shortcut.btn_index.ToString()); OnShortcut.Invoke(_shortcut); }