Files
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

15 lines
494 B
C#

namespace UnityEngine.XR.Interaction.Toolkit.Inputs.Haptics
{
/// <summary>
/// Interface which provides a group of haptic impulse channels.
/// </summary>
public interface IXRHapticImpulseProvider
{
/// <summary>
/// Gets the group of haptic impulse channels.
/// </summary>
/// <returns>Returns the haptic impulse channel group, which may be <see langword="null"/>.</returns>
IXRHapticImpulseChannelGroup GetChannelGroup();
}
}