VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.xr.interaction.toolkit/Runtime/Inputs/Haptics/IXRHapticImpulseProvider.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03: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();
}
}