Skip to content

Commit f625836

Browse files
authored
NEW: Basic DS Edge support [ISX-1367] (#1816)
* Match Dual Sense Edge with basic Dual Sense layout * Update CHANGELOG.md
1 parent 07e2d2e commit f625836

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Packages/com.unity.inputsystem/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ however, it has to be formatted properly to pass verification tests.
2626

2727
### Added
2828
- Added Copy, Paste and Cut support for Action Maps, Actions and Bindings via context menu and key command shortcuts.
29+
- Added Dual Sense Edge controller to be mapped to the same layout as the Dual Sense controller
2930

3031
## [1.8.0-pre.2] - 2023-11-09
3132

Packages/com.unity.inputsystem/InputSystem/Plugins/DualShock/DualShockSupport.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ public static void Initialize()
3131
matches: new InputDeviceMatcher()
3232
.WithInterface("HID")
3333
.WithCapability("vendorId", 0x54C) // Sony Entertainment.
34-
.WithCapability("productId", 0xCE6));
34+
.WithCapability("productId", 0xDF2)); // Dual Sense Edge
35+
InputSystem.RegisterLayout<DualSenseGamepadHID>(
36+
matches: new InputDeviceMatcher()
37+
.WithInterface("HID")
38+
.WithCapability("vendorId", 0x54C) // Sony Entertainment.
39+
.WithCapability("productId", 0xCE6)); // Dual Sense
3540
InputSystem.RegisterLayout<DualShock4GamepadHID>(
3641
matches: new InputDeviceMatcher()
3742
.WithInterface("HID")

0 commit comments

Comments
 (0)