Skip to content

Commit 762b2b6

Browse files
authored
FIX: ISXB-1208 fix InvalidOperationException when entering playmode (#2110)
1 parent 29ca1f3 commit 762b2b6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Packages/com.unity.inputsystem/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Due to package verification, the latest version below is the unpublished version
99
however, it has to be formatted properly to pass verification tests.
1010

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

1315
### Fixed
1416
- Fixed an issue where the prompt to enable the InputSystem backends would interrupt the import of large assets.

Packages/com.unity.inputsystem/InputSystem/Plugins/UI/InputSystemUIInputModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1653,9 +1653,9 @@ protected override void OnDisable()
16531653
ResetPointers();
16541654

16551655
InputActionState.s_GlobalState.onActionControlsChanged.RemoveCallback(m_OnControlsChangedDelegate);
1656-
16571656
DisableAllActions();
16581657
UnhookActions();
1658+
UnassignActions();
16591659

16601660
base.OnDisable();
16611661
}

0 commit comments

Comments
 (0)