From ae292921f225eb4cd6fc0c9bfdbba3eed1e19004 Mon Sep 17 00:00:00 2001 From: Peewi Date: Wed, 1 Feb 2023 15:12:12 +0100 Subject: [PATCH] Add missing parameter description --- Facepunch.Steamworks/Structs/Controller.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Facepunch.Steamworks/Structs/Controller.cs b/Facepunch.Steamworks/Structs/Controller.cs index c13353b..e005137 100644 --- a/Facepunch.Steamworks/Structs/Controller.cs +++ b/Facepunch.Steamworks/Structs/Controller.cs @@ -68,8 +68,8 @@ public void TriggerVibration( ushort leftSpeed, ushort rightSpeed ) /// /// The intensity value for the left rumble motor. /// The intensity value of the right rumble motor. - /// - /// + /// The intensity value of the Xbox One left trigger rumble + /// The intensity value of the Xbox One right trigger rumble. public void TriggerVibrationExtended( ushort leftSpeed, ushort rightSpeed, ushort leftTriggerSpeed, ushort rightTriggerSpeed ) { SteamInput.Internal.TriggerVibrationExtended( Handle, leftSpeed, rightSpeed, leftTriggerSpeed, rightTriggerSpeed );