示例#1
0
 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");
     }
 }
示例#2
0
        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");
            }
        }
示例#3
0
 void HandleLongTap(BtnShortcut _shortcut)
 {
     //Debug.Log("longtap:" + _shortcut.btn_index.ToString());
     OnLongTap.Invoke(_shortcut);
 }
示例#4
0
 void HandleShortcut(BtnShortcut _shortcut)
 {
     //Debug.Log("shortcut:" + _shortcut.btn_index.ToString());
     OnShortcut.Invoke(_shortcut);
 }