package.json 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "com.unity.inputsystem",
  3. "displayName": "Input System",
  4. "version": "1.0.1",
  5. "unity": "2019.1",
  6. "repository": {
  7. "url": "https://github.com/Unity-Technologies/InputSystem.git",
  8. "type": "git",
  9. "revision": "f757ff8ed7383896d71a608a755c1c39373cf4c8"
  10. },
  11. "description": "A new input system which can be used as a more extensible and customizable alternative to Unity's classic input system in UnityEngine.Input.",
  12. "keywords": [
  13. "input",
  14. "events",
  15. "keyboard",
  16. "mouse",
  17. "gamepad",
  18. "touch",
  19. "vr",
  20. "xr"
  21. ],
  22. "upmCi": {
  23. "footprint": "59f8f6035ad641493f6a0c986a495cb248b48f08"
  24. },
  25. "samples": [
  26. {
  27. "displayName": "Custom Binding Composite",
  28. "description": "Shows how to implement a custom composite binding.",
  29. "path": "Samples~/CustomComposite"
  30. },
  31. {
  32. "displayName": "Custom Device",
  33. "description": "Shows how to implement a custom input device.",
  34. "path": "Samples~/CustomDevice"
  35. },
  36. {
  37. "displayName": "Custom Device Usages",
  38. "description": "Shows how to tag devices with custom usage strings that can be used, for example, to distinguish multiple instances of the same type of device (e.g. 'Gamepad') based on how the device is used (e.g. 'Player1' vs 'Player2' or 'LeftHand' vs 'RightHand').",
  39. "path": "Samples~/CustomDeviceUsages"
  40. },
  41. {
  42. "displayName": "Gamepad Mouse Cursor",
  43. "description": "An example that shows how to use the gamepad for driving a mouse cursor for use with UIs.",
  44. "path": "Samples~/GamepadMouseCursor"
  45. },
  46. {
  47. "displayName": "In-Game Hints",
  48. "description": "Demonstrates how to create in-game hints in the UI which reflect current bindings and active control schemes.",
  49. "path": "Samples~/InGameHints"
  50. },
  51. {
  52. "displayName": "InputDeviceTester",
  53. "description": "A scene containing UI to visualize the controls on various supported input devices.",
  54. "path": "Samples~/InputDeviceTester"
  55. },
  56. {
  57. "displayName": "Input Recorder",
  58. "description": "Shows how to capture and replay input events. Also useful by itself to debug input event sequences.",
  59. "path": "Samples~/InputRecorder"
  60. },
  61. {
  62. "displayName": "On-Screen Controls",
  63. "description": "Demonstrates a simple setup for an on-screen joystick.",
  64. "path": "Samples~/OnScreenControls"
  65. },
  66. {
  67. "displayName": "Rebinding UI",
  68. "description": "An example UI component that demonstrates how to create UI for rebinding actions.",
  69. "path": "Samples~/RebindingUI"
  70. },
  71. {
  72. "displayName": "Simple Demo",
  73. "description": "A walkthrough of a simple character controller that demonstrates several techniques for working with the input system. See the README.md file in the sample for details.",
  74. "path": "Samples~/SimpleDemo"
  75. },
  76. {
  77. "displayName": "Simple Multiplayer",
  78. "description": "Demonstrates how to set up a simple local multiplayer scenario.",
  79. "path": "Samples~/SimpleMultiplayer"
  80. },
  81. {
  82. "displayName": "Tanks Demo",
  83. "description": "The Unity Tanks demo game, converted to using the Input System package, and with a custom input binding screen. This sample is not actually part of the package, but needs to be downloaded.",
  84. "path": "Samples~/TanksDemo"
  85. },
  86. {
  87. "displayName": "Touch Samples",
  88. "description": "A series of sample scenes for using touch input with the Input System package. This sample is not actually part of the package, but needs to be downloaded.",
  89. "path": "Samples~/TouchSamples"
  90. },
  91. {
  92. "displayName": "Visualizers",
  93. "description": "Several example visualizations of input controls/devices and input actions.",
  94. "path": "Samples~/Visualizers"
  95. }
  96. ]
  97. }