IndieGame/client/Packages/com.unity.inputsystem@1.7.0/InputSystem/Plugins/DualShock/IDualShockHaptics.cs

18 lines
580 B
C#
Raw Normal View History

2024-10-11 10:12:15 +08: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);
}
}