Advertisement
jedijosh920

TaleWorlds InputSystem InputKey Enum

Apr 6th, 2020
9,244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.17 KB | None | 0 0
  1. namespace TaleWorlds.InputSystem
  2. {
  3.     public enum InputKey
  4.     {
  5.         Invalid = -1,
  6.         Escape = 1,
  7.         D1 = 2,
  8.         D2 = 3,
  9.         D3 = 4,
  10.         D4 = 5,
  11.         D5 = 6,
  12.         D6 = 7,
  13.         D7 = 8,
  14.         D8 = 9,
  15.         D9 = 10,
  16.         D0 = 11,
  17.         Minus = 12,
  18.         Equals = 13,
  19.         BackSpace = 14,
  20.         Tab = 15,
  21.         Q = 16,
  22.         W = 17,
  23.         E = 18,
  24.         R = 19,
  25.         T = 20,
  26.         Y = 21,
  27.         U = 22,
  28.         I = 23,
  29.         O = 24,
  30.         P = 25,
  31.         OpenBraces = 26,
  32.         CloseBraces = 27,
  33.         Enter = 28,
  34.         LeftControl = 29,
  35.         A = 30,
  36.         S = 31,
  37.         D = 32,
  38.         F = 33,
  39.         G = 34,
  40.         H = 35,
  41.         J = 36,
  42.         K = 37,
  43.         L = 38,
  44.         SemiColon = 39,
  45.         Apostrophe = 40,
  46.         Tilde = 41,
  47.         LeftShift = 42,
  48.         BackSlash = 43,
  49.         Z = 44,
  50.         X = 45,
  51.         C = 46,
  52.         V = 47,
  53.         B = 48,
  54.         N = 49,
  55.         M = 50,
  56.         Comma = 51,
  57.         Period = 52,
  58.         Slash = 53,
  59.         RightShift = 54,
  60.         NumpadMultiply = 55,
  61.         LeftAlt = 56,
  62.         Space = 57,
  63.         CapsLock = 58,
  64.         F1 = 59,
  65.         F2 = 60,
  66.         F3 = 61,
  67.         F4 = 62,
  68.         F5 = 63,
  69.         F6 = 64,
  70.         F7 = 65,
  71.         F8 = 66,
  72.         F9 = 67,
  73.         F10 = 68,
  74.         Numpad7 = 71,
  75.         Numpad8 = 72,
  76.         Numpad9 = 73,
  77.         NumpadMinus = 74,
  78.         Numpad4 = 75,
  79.         Numpad5 = 76,
  80.         Numpad6 = 77,
  81.         NumpadPlus = 78,
  82.         Numpad1 = 79,
  83.         Numpad2 = 80,
  84.         Numpad3 = 81,
  85.         Numpad0 = 82,
  86.         NumpadPeriod = 83,
  87.         Extended = 86,
  88.         F11 = 87,
  89.         F12 = 88,
  90.         NumpadEnter = 156,
  91.         RightControl = 157,
  92.         NumpadSlash = 181,
  93.         RightAlt = 184,
  94.         NumLock = 197,
  95.         Home = 199,
  96.         Up = 200,
  97.         PageUp = 201,
  98.         Left = 203,
  99.         Right = 205,
  100.         End = 207,
  101.         Down = 208,
  102.         PageDown = 209,
  103.         Insert = 210,
  104.         Delete = 211,
  105.         ControllerLStick = 222,
  106.         ControllerRStick = 223,
  107.         LeftMouseButton = 224,
  108.         RightMouseButton = 225,
  109.         MiddleMouseButton = 226,
  110.         X1MouseButton = 227,
  111.         X2MouseButton = 228,
  112.         MouseScrollUp = 229,
  113.         MouseScrollDown = 230,
  114.         ControllerLStickUp = 232,
  115.         ControllerLStickDown = 233,
  116.         ControllerLStickLeft = 234,
  117.         ControllerLStickRight = 235,
  118.         ControllerRStickUp = 236,
  119.         ControllerRStickDown = 237,
  120.         ControllerRStickLeft = 238,
  121.         ControllerRStickRight = 239,
  122.         ControllerLUp = 240,
  123.         ControllerLDown = 241,
  124.         ControllerLLeft = 242,
  125.         ControllerLRight = 243,
  126.         ControllerRUp = 244,
  127.         ControllerRDown = 245,
  128.         ControllerRLeft = 246,
  129.         ControllerRRight = 247,
  130.         ControllerLBumper = 248,
  131.         ControllerRBumper = 249,
  132.         ControllerLOption = 250,
  133.         ControllerROption = 251,
  134.         ControllerLThumb = 252,
  135.         ControllerRThumb = 253,
  136.         ControllerLTrigger = 254,
  137.         ControllerRTrigger = 255
  138.     }
  139. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement