File size: 382 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 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);
}
}
|