Rasagar/Library/PackageCache/com.unity.inputsystem/InputSystem/Plugins/DualShock/IDualShockHaptics.cs

18 lines
580 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
using UnityEngine.InputSystem.Haptics;
namespace UnityEngine.InputSystem.DualShock
{
/// <summary>
/// Extended haptics interface for DualShock controllers.
/// </summary>
public interface IDualShockHaptics : IDualMotorRumble
{
/// <summary>
/// Set the color of the light bar on the back of the controller.
/// </summary>
/// <param name="color">Color to use for the light bar. Alpha component is ignored. Also,
/// RBG values are clamped into [0..1] range.</param>
void SetLightBarColor(Color color);
}
}