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

27 lines
840 B
C#

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