// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Devices
{
///
/// Enumerates the possible elements in a VR controller that have a single axis input.
///
public enum UxrInput1D
{
///
/// No single axis element.
///
None,
///
/// Analog grip button.
///
Grip,
///
/// Analog trigger button.
///
Trigger,
///
/// Secondary analog trigger button, in controllers that have two trigger buttons.
///
Trigger2
}
}