You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Packages/com.unity.inputsystem/CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
25
25
- Fixed an incorrect ArraysHelper.HaveDuplicateReferences implementation that didn't use its arguments right [ISXB-1792] (https://github.com/Unity-Technologies/InputSystem/pull/2376)
26
26
27
27
### Changed
28
-
28
+
- Removed 32-bit compilation check for HID on Windows players, which had no impact anymore. (ISX-2543)
29
29
- Migrated sample scenes to use Universal Render Pipeline (URP) with Built-in Render Pipeline fallback shaders. The URP package is now required to run the samples. (ISX-2343)
30
30
- Changed the UI for `Actions.inputactions` asset to use UI Toolkit framework.
Copy file name to clipboardExpand all lines: Packages/com.unity.inputsystem/InputSystem/Plugins/HID/HID.cs
-5Lines changed: 0 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,6 @@
11
11
usingUnityEngine.Scripting;
12
12
usingUnityEngine.Pool;
13
13
14
-
// HID support is currently broken in 32-bit Windows standalone players. Consider 32bit Windows players unsupported for now.
15
-
#if UNITY_STANDALONE_WIN&&!UNITY_64
16
-
#warning The 32-bit Windows player is not currently supported by the Input System. HID input will not work in the player. Please use x86_64, if possible.
17
-
#endif
18
-
19
14
////REVIEW: there will probably be lots of cases where the HID device creation process just needs a little tweaking; we should
20
15
//// have better mechanism to do that without requiring to replace the entire process wholesale
0 commit comments