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
2 changes: 2 additions & 0 deletions Packages/com.unity.inputsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Due to package verification, the latest version below is the unpublished version
however, it has to be formatted properly to pass verification tests.

## [Unreleased] - yyyy-mm-dd
### Fixed
- Fixed an issue causing InvalidOperationException when entering playmode with domain reload disabled. [ISXB-1208](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1208).

### Fixed
- Fixed an issue where the prompt to enable the InputSystem backends would interrupt the import of large assets.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1653,9 +1653,9 @@ protected override void OnDisable()
ResetPointers();

InputActionState.s_GlobalState.onActionControlsChanged.RemoveCallback(m_OnControlsChangedDelegate);

DisableAllActions();
UnhookActions();
UnassignActions();

base.OnDisable();
}
Expand Down
Loading