An efficient and versatile input system for Unity.
Перейти к файлу
Alex Tyrer 12ee89a3f5
FIX: The "Add Control Scheme..." popup now requires explicit Save/Close user action (case ISXB-1131) (#2044)
* [Input System] The "Add Control Scheme..." popup now requires explicit Save/Close user action (case ISXB-1131)

o Previously clicking outside the popup window (anywhere in the editor) would close the popup window.

o This would leave a new blank (unnamed, orphaned) control scheme populating the UI - this was confusing.

o Now this popup will persist until the user explictly chooses to Save or Cancel.

* [Input System] Added CHANGELOG entry for "Add Control Scheme..." popup fix (case ISXB-1131)

* [Input System] Fix typo in CHANGELOG entry - removed extraneous final closing parenthesis.

* [Input System] Licensing failure - try limiting to version 2021.3.45f
2024-11-06 18:18:09 +01:00
.fork
.github
.yamato FIX: The "Add Control Scheme..." popup now requires explicit Save/Close user action (case ISXB-1131) (#2044) 2024-11-06 18:18:09 +01:00
Assets FIX: Fixed unexpected control scheme switch when using `OnScreenControl` and pointer based schemes (ISXB-656) (#2023) 2024-11-04 17:35:44 -05:00
Docs
ExternalSampleProjects
Packages FIX: The "Add Control Scheme..." popup now requires explicit Save/Close user action (case ISXB-1131) (#2044) 2024-11-06 18:18:09 +01:00
ProjectSettings
Tools
.buginfo
.gitattributes
.gitconfig
.gitignore
.gitmodules
.repoconfig
AndroidBuildTests.cmd
AndroidBuildTests.ps1
AndroidRunTests.cmd
AndroidRunTests.ps1
CONTRIBUTIONS.md
LICENSE.md
README.md
Third Party Notices.md
cleangarbage.cmd
cleangarbage.ps1
cleangarbage.sh
countsloc.sh
format.cmd
format.ps1
format.sh
git-add-api.ps1
git-prep.ps1 CHANGE: Remove obsolete patching of doctools in CI runs (#1295). 2021-03-19 13:19:51 +01:00
projectlist.txt
steam_appid.txt

README.md

Unity Input System (Package)

The Unity Input System package is an extension package to the Unity Platform which provides a system to configure game actions and access input devices to interact with Unity content. It is intended to be a more powerful, flexible, and configurable replacement to Unity Input API (the UnityEngine.Input class).

Prerequisites

The current version of the Input System requires Unity 2019 LTS, Unity 2020 LTS, Unity 2021 or Unity Beta (may be subject to instabilities) and included tooling to compile and run. The recommended way of installing Unity is via Unity Hub.

Getting Started

For instructions on how to get started using the Input System within Unity see Input System Manual - Installation.

Tutorials on how to use the Input System are available as part of:

  • Unity Learn - Using the Input System in Unity - Video tutorials on how to use the Input System in Unity.
  • Warriors Demo Project - A demo project illustrating a wide range of tools and features in the Input System, including local multi-player using different input methods.
  • Example projects part of this repository:
    • Custom Composite - Shows how to implement and register a custom InputBindingComposite.
    • Custom Device - Demonstrates how to add and author a custom device.
    • Custom Device Usages - An example of how to tag devices with custom "usages" and how to bind actions specifically to devices with only those usages.
    • Gamepad Mouse Cursor - An example of UI pointer navigation driven from gamepad input.
    • In-game Hints - Illustrates how to display text in the UI that involves action bindings as well as object interaction.
    • Input Recorder - Demonstrates how to use InputEventTrace and InputRecorder.
    • On-screen Controls - Demonstrates how to set up and use on-screen gamepad-like controls.
    • Rebinding UI - Demonstrates how to set up a rebinding UI to reconfigure bindings during run-time.
    • Simple Demo - Shows how to set up a simple character controller using actions, action asset as well as using the PlayerInput component.
    • Simple Multiplayer - Demonstrates a basic split-screen local multiplayer setup where players can join by pressing buttons on the supported devices to join the game.
    • UI vs Game Input - Illustrates how to handle input and resolve ambiguities that arise when overlaying UI elements in the game-view.
    • Visualizers - Provides various input data visualizations for common devices.

How to use a released versions of the package within a Unity project

All released versions of the Input System package are available via the Unity Package Manager, see Input System Manual - Installation for instructions how to fetch the package and compatible versions of samples and install them into your Unity project.

How to use the latest changes of the package in a Unity project

To test out the latest (unreleased) changes:

  1. Clone develop. The intention is to always keep the develop branch in a releasable state, but it reflects current development and may contain bugs or unexpected behavior that was not present in the latest released version.
  2. Add the local package to your project by following the steps described in Unity Manual - Installing a package from a local folder and select Packages/com.unity.inputsystem/package.json.
  1. Clone develop or the desired branch or release tag.
  2. Open the root folder of the repository in the Unity Editor. This way you have access to tests and samples that are excluded when importing only the package into another Unity project.

During development, run Input System automated tests by selecting Window > General > Test Runner to access the Test Runner and select Run All for PlayMode or EditMode tests.

Contribution & Feedback

This project is developed by Unity Technologies but welcomes user contributions and feedback.

If you have any feedback or questions about Unity's Input System, you are invited to join us on the Unity Forums.

If you want to contribute to the development of the Input System see CONTRIBUTIONS.md for additional information.

License

This package is distributed under the Unity Companion License for Unity-dependent projects license with addition of third party licenses which applies to the Assets/Samples/RebindingUI example project specifically.