您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
23 行
572 B
23 行
572 B
using UnityEngine;
|
|
|
|
namespace Unity.UIWidgets.foundation {
|
|
public static partial class foundation_ {
|
|
public static readonly bool kReleaseMode = !Debug.isDebugBuild;
|
|
|
|
#if UIWidgets_PROFILE
|
|
public const bool kProfileMode = true;
|
|
#else
|
|
public const bool kProfileMode = false;
|
|
#endif
|
|
|
|
public static readonly bool kDebugMode = !kReleaseMode && !kProfileMode;
|
|
|
|
public const float precisionErrorTolerance = 1e-10f;
|
|
|
|
#if UNITY_WEBGL
|
|
public const bool kIsWeb = true;
|
|
#else
|
|
public const bool kIsWeb = false;
|
|
#endif
|
|
}
|
|
}
|