// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Animation.Transforms
{
///
/// Rotation space for rotation transforms.
///
public enum UxrTransformRotationSpace
{
///
/// Local coordinates.
///
Local,
///
/// World-space coordinates.
///
World
}
}