Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Packages/com.unity.inputsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed the Device Simulator plugin keeping the real mouse and pen disabled while working in other Editor windows. Conflicting native `Mouse`/`Pen` devices are now only disabled while the Simulator window is focused and re-enabled as soon as focus moves elsewhere [UUM-145509](https://jira.unity3d.com/browse/UUM-145509).
- Fixed the Input Actions editor in Project Settings losing the selected action or binding when opening the control picker from the Path field [UUM-151771](https://issuetracker.unity3d.com/product/unity/issues/guid/UUM-151771).

### Changed

- Removing InputSystem gizmo / icons from scene view window [UUM-151780](https://issuetracker.unity3d.com/product/unity/issues/guid/UUM-151780).


## [1.20.0] - 2026-07-21

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ namespace UnityEngine.InputSystem
/// </example>
/// <seealso cref="PlayerInputManager"/>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1724:TypeNamesShouldNotMatchNamespaces")]
[Icon("Packages/com.unity.inputsystem/InputSystem/Editor/Icons/InputAction.png")]
[AddComponentMenu("Input/Player Input")]
[DisallowMultipleComponent]
[HelpURL(InputSystem.kDocUrl + "/manual/player-input-component.html")]
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ namespace UnityEngine.InputSystem
/// device for pairing. If additional devices are required, the input system selects them from the pool of currently
/// unpaired devices.
/// </remarks>
[Icon("Packages/com.unity.inputsystem/InputSystem/Editor/Icons/InputAction.png")]
[AddComponentMenu("Input/Player Input Manager")]
[HelpURL(InputSystem.kDocUrl + "/manual/player-input-manager-component.html")]
public class PlayerInputManager : MonoBehaviour
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ namespace UnityEngine.InputSystem.UI
/// }
/// </code>
/// </example>
[Icon("Packages/com.unity.inputsystem/InputSystem/Editor/Icons/InputSystemUIInputModule@64.png")]
[HelpURL(InputSystem.kDocUrl + "/manual/ui-input-module-reference.html")]
public class InputSystemUIInputModule : BaseInputModule
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading