Ejemplo n.º 1
0
 protected override void processInputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     if (isExistSubUI(type) == true)
     {
         return;
     }
 }
Ejemplo n.º 2
0
 protected override void processInputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     if (type == inputKeyManager.S_KeyInput.KeyType.ENTER)
     {
         requestMakeRoom();
     }
 }
Ejemplo n.º 3
0
 protected override void processInputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     if (type == inputKeyManager.S_KeyInput.KeyType.ENTER)
     {
         exitUI(1);
     }
 }
Ejemplo n.º 4
0
 protected bool isExistSubUI(inputKeyManager.S_KeyInput.KeyType type)
 {
     if (m_uiIndexStack.Count <= 0)
     {
         return(false);
     }
     m_uiList[m_uiIndexStack.Peek()].inputKey(type);
     return(true);
 }
Ejemplo n.º 5
0
 protected override void processInputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     if (type == inputKeyManager.S_KeyInput.KeyType.ENTER)
     {
         tryJoin();
     }
     else if (type == inputKeyManager.S_KeyInput.KeyType.ESC)
     {
         exitUI();
     }
 }
Ejemplo n.º 6
0
 protected override void processInputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     if (isExistSubUI(type) == true)
     {
         return;
     }
     if (type == inputKeyManager.S_KeyInput.KeyType.ENTER)
     {
         exitUI(1);
     }
 }
Ejemplo n.º 7
0
 protected override void processInputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     if (type == inputKeyManager.S_KeyInput.KeyType.ESC)
     {
         exitUI();
     }
     else if (type == inputKeyManager.S_KeyInput.KeyType.ENTER)
     {
         requestEnterRoom();
     }
 }
Ejemplo n.º 8
0
 protected override void processInputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     if (m_bIgnoreChat == true && isExistSubUI(type) == true)
     {
         return;
     }
     if (type == inputKeyManager.S_KeyInput.KeyType.ENTER)
     {
         sendChat();
     }
     else if (type == inputKeyManager.S_KeyInput.KeyType.TAP)
     {
         m_chatBox.focusIF();
     }
 }
Ejemplo n.º 9
0
 protected override void processInputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     if (isExistSubUI(type) == true)
     {
         return;
     }
     else if (GameManager.m_Instance.isLogin() == false && type == inputKeyManager.S_KeyInput.KeyType.ENTER)
     {
         tryLogin();
     }
     else if (type == inputKeyManager.S_KeyInput.KeyType.TAP)
     {
         changeFocusIF();
     }
 }
Ejemplo n.º 10
0
    protected override void processInputKey(inputKeyManager.S_KeyInput.KeyType type)
    {

    }
Ejemplo n.º 11
0
 protected abstract void processInputKey(inputKeyManager.S_KeyInput.KeyType type);
Ejemplo n.º 12
0
 public void inputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     processInputKey(type);
 }
Ejemplo n.º 13
0
 public void inputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     ((uiManager)m_uiMGR).inputKey(type);
 }
Ejemplo n.º 14
0
 public void inputKey(inputKeyManager.S_KeyInput.KeyType type)
 {
     m_uiController.inputKey(type);
 }