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
1 change: 1 addition & 0 deletions Packages/com.unity.inputsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ however, it has to be formatted properly to pass verification tests.
- Fixed 'OnDrop' event not called when 'IPointerDownHandler' is also listened. [ISXB-1014](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1014)
- Fixed InputSystemUIInputModule calling pointer events on parent objects even when the "Send Pointer Hover To Parent" is off. [ISXB-586](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-586)
- Improved performance of disconnected device activation (ISX-1450)
- Fixed DualSense controllers being recognized as DualShock4 (ISX-1411)

### Changed
- Use `ProfilerMarker` instead of `Profiler.BeginSample` and `Profiler.EndSample` when appropriate to enable recording of profiling data.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public static void Initialize()
new InputDeviceMatcher()
.WithInterface("HID")
.WithManufacturerContains("Sony")
.WithManufacturerContains("Entertainment")
.WithProduct("Wireless Controller"));

InputSystem.RegisterLayout<DualShock3GamepadHID>(
Expand All @@ -67,7 +66,6 @@ public static void Initialize()
new InputDeviceMatcher()
.WithInterface("HID")
.WithManufacturerContains("Sony")
.WithManufacturerContains("Entertainment")
.WithProduct("PLAYSTATION(R)3 Controller", supportRegex: false));
#endif
}
Expand Down