27 lines
840 B
C#
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
|
|
}
|
|
} |