23 lines
719 B
C#
23 lines
719 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="UxrHandIntegration.GizmoHandSize.cs" company="VRMADA">
|
|
// Copyright (c) VRMADA, All rights reserved.
|
|
// </copyright>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
namespace UltimateXR.Avatar
|
|
{
|
|
public partial class UxrHandIntegration
|
|
{
|
|
#region Public Types & Data
|
|
|
|
/// <summary>
|
|
/// Enumerates the supported gizmo hand sizes.
|
|
/// </summary>
|
|
public enum GizmoHandSize
|
|
{
|
|
Big,
|
|
Small
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |