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