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/InputSystem/Devices/Gamepad.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -707,10 +707,10 @@ public override void MakeCurrent()
707
707
708
708
/// <inheritdoc cref="InputDevice.OnAdded"/>
709
709
/// <summary>
710
-
/// Called when the gamepad is added to the system.
710
+
/// Called when a gamepad is added to the system.
711
711
/// </summary>
712
712
/// <remarks>
713
-
/// It will also add the gamepad to the list of <see cref="all"/> gamepads.
713
+
/// Override this method if you want to do additional processing when a gamepad becomes connected. After this method is called, the gamepad is automatically added to the list of <see cref="all"/> gamepads.
/// Called when the gamepad is removed from the system.
723
723
/// </summary>
724
724
/// <remarks>
725
-
/// It will also remove the gamepad from the list of <see cref="all"/> gamepads.
725
+
/// Override this method if you want to do additional processing when a gamepad becomes disconnected. After this method is called, the gamepad is automatically removed from the list of <see cref="all"/> gamepads.
0 commit comments