Exemplo n.º 1
0
 public InputCombination(KeyCode key, byte mouse, bool isMod, E_INPUT type)
 {
     if (isMod)
         modify = key;
     else
         keyCode = key;
     mouseButton = mouse;
     inputType = type;
 }
Exemplo n.º 2
0
 public InputCombination(byte mouse, E_INPUT type)
 {
     mouseButton = mouse; inputType = type;
 }
Exemplo n.º 3
0
 public InputCombination(KeyCode key, E_INPUT type)
 {
     keyCode = key; inputType = type;
 }
Exemplo n.º 4
0
 public InputCombination(KeyCode mod, KeyCode key, E_INPUT type)
 {
     modify = mod; keyCode = key; inputType = type;
 }
Exemplo n.º 5
0
 public InputCombination(KeyCode mod, KeyCode key, byte mouse, E_INPUT type)
 {
     modify = mod; keyCode = key; mouseButton = mouse; inputType = type;
 }
Exemplo n.º 6
0
 public void keyUp(E_INPUT eType)
 {
     _bInputData[(int)eType] = false;
 }
Exemplo n.º 7
0
 public void keyDown(E_INPUT eType)
 {
     _bInputData[(int)eType] = true;
 }
Exemplo n.º 8
0
 public bool isKeyDown(E_INPUT eType)
 {
     return _bInputData[(int)eType];
 }