Madolite

My Current Key Detection List (C# / XNA)

Nov 18th, 2017
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. /* XNA KEYLIST:
  2. * https://msdn.microsoft.com/en-us/library/microsoft.xna.framework.input.keys.aspx
  3. *
  4. * Keys.Escape
  5. * Keys.F1 - F12
  6. *
  7. * Keys.OemPipe
  8. * Keys.D1 - D0 (Numericals)
  9. * Keys.OemPlus
  10. * Keys.OemOpenBrackets (\ NOR)
  11. * Keys.OemBackslash
  12. * Keys.Back
  13. *
  14. * Keys.A - Z
  15. * Keys.OemCloseBrackets (Å NOR)
  16. * Keys.OemSemicolon (¨ NOR)
  17. * Keys.OemTilde (Ø NOR)
  18. * Keys.OemQuotes (Æ NOR)
  19. * Keys.OemQuestion (' (apostrophe) NOR)
  20.  
  21. * Keys.Tab
  22. * Keys.CapsLock
  23. * Keys.Enter
  24. *
  25. * Keys.LeftShift
  26. * Keys.OemPeriod
  27. * Keys.OemComma
  28. * Keys.OemMinus
  29. * Keys.RightShift
  30. *
  31. * Keys.LeftControl
  32. * Keys.LeftAlt
  33. * Keys.Space
  34. * Keys.RightAlt
  35. * Keys.RightControl
  36. *
  37. * Keys.PrintScreen
  38. * Keys.Scroll
  39. * Keys.Pause
  40. *
  41. * Keys.Insert
  42. * Keys.Delete
  43. * Keys.Home
  44. * Keys.End
  45. * Keys.PageUp
  46. * Keys.PageDown
  47. *
  48. * Keys.NumLock
  49. * Keys.NumPad1 - NumPad0
  50. * Keys.Add
  51. * Keys.Subtract
  52. * Keys.Divide
  53. * Keys.Multiply
  54. * Keys.Decimal
  55. *
  56. * Keys.Up
  57. * Keys.Down
  58. * Keys.Left
  59. * Keys.Right
  60. *
  61. */
Advertisement
Add Comment
Please, Sign In to add comment