arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/XInput/IXboxOneRumble.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

13 lines
382 B
C#

using UnityEngine.InputSystem.Haptics;
namespace UnityEngine.InputSystem.XInput
{
/// <summary>
/// Extended dual motor gamepad rumble that adds left and right trigger motors.
/// </summary>
public interface IXboxOneRumble : IDualMotorRumble
{
void SetMotorSpeeds(float lowFrequency, float highFrequency, float leftTrigger, float rightTrigger);
}
}