Files
dungeons/Assets/UltimateXR/Runtime/Scripts/Core/UxrConstants.Hand.cs
2024-08-06 21:58:35 +02:00

26 lines
755 B
C#

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="UxrConstants.Hand.cs" company="VRMADA">
// Copyright (c) VRMADA, All rights reserved.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Core
{
public static partial class UxrConstants
{
#region Public Types & Data
/// <summary>
/// Hand constants.
/// </summary>
public static class Hand
{
#region Public Types & Data
public const float HandWidth = 0.08f;
#endregion
}
#endregion
}
}