// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Haptics
{
///
/// Enumerates the different types of supported haptic playback.
///
public enum UxrHapticMode
{
///
/// Replaces the current haptics on the device.
///
Replace,
///
/// Mixes the new haptics with the current haptics on the device.
///
Mix
}
}