We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24ad8c3 commit 70a4618Copy full SHA for 70a4618
Packages/com.unity.inputsystem/InputSystem/InputManager.cs
@@ -2526,6 +2526,12 @@ private unsafe void InitializeDeviceState(InputDevice device)
2526
2527
private void OnNativeDeviceDiscovered(int deviceId, string deviceDescriptor)
2528
{
2529
+ var deviceTag = InputDeviceDescription.FromJson(deviceDescriptor).product;
2530
+
2531
+ Debug.Log($"OnNativeDeviceDiscovered {deviceTag}");
2532
2533
+ NativeInputSystem.LogDeviceConnectedInsight( deviceTag );
2534
2535
// Make sure we're not adding to m_AvailableDevices before we restored what we
2536
// had before a domain reload.
2537
RestoreDevicesAfterDomainReloadIfNecessary();
0 commit comments