// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using UltimateXR.Core.StateSave; using UltimateXR.Extensions.System; namespace UltimateXR.Core { public static partial class UxrConstants { #region Public Types & Data /// /// Math constants. /// public static class Math { #region Public Types & Data /// /// Default precision threshold used by some functionality in the framework. /// for example, avoids serializing changes in specific types when they /// didn't change using . /// public const float DefaultPrecisionThreshold = 0.0001f; #endregion } #endregion } }