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 70cf605 commit b40bbd9Copy full SHA for b40bbd9
Packages/com.unity.inputsystem/InputSystem/Editor/Debugger/InputDeviceDebuggerWindow.cs
@@ -132,6 +132,8 @@ internal void OnGUI()
132
EditorGUILayout.LabelField("Product", m_Device.description.product);
133
if (!string.IsNullOrEmpty(m_Device.description.manufacturer))
134
EditorGUILayout.LabelField("Manufacturer", m_Device.description.manufacturer);
135
+ if (!string.IsNullOrEmpty(m_Device.description.version))
136
+ EditorGUILayout.LabelField("Version", m_Device.description.version);
137
if (!string.IsNullOrEmpty(m_Device.description.serial))
138
EditorGUILayout.LabelField("Serial Number", m_Device.description.serial);
139
EditorGUILayout.LabelField("Device ID", m_DeviceIdString);
0 commit comments