// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Manipulation
{
///
/// Enumerates the ways a rotation can be constrained when being manipulated.
///
public enum UxrRotationConstraintMode
{
///
/// No constraints.
///
Free,
///
/// Local rotation constraint.
///
RestrictLocalRotation,
///
/// The cannot rotate.
///
Locked
}
}