23 lines
759 B
C#
23 lines
759 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="UxrTransformRotationSpace.cs" company="VRMADA">
|
|
// Copyright (c) VRMADA, All rights reserved.
|
|
// </copyright>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
namespace UltimateXR.Animation.Transforms
|
|
{
|
|
/// <summary>
|
|
/// Rotation space for rotation transforms.
|
|
/// </summary>
|
|
public enum UxrTransformRotationSpace
|
|
{
|
|
/// <summary>
|
|
/// Local coordinates.
|
|
/// </summary>
|
|
Local,
|
|
|
|
/// <summary>
|
|
/// World-space coordinates.
|
|
/// </summary>
|
|
World
|
|
}
|
|
} |