diff --git a/Assets/TEngine/Runtime/GameFramework/UI/WindowAttribute.cs b/Assets/TEngine/Runtime/GameFramework/UI/WindowAttribute.cs index db5823b2..fa40ce27 100644 --- a/Assets/TEngine/Runtime/GameFramework/UI/WindowAttribute.cs +++ b/Assets/TEngine/Runtime/GameFramework/UI/WindowAttribute.cs @@ -2,13 +2,16 @@ namespace TEngine { + /// + /// UI层级枚举。 + /// public enum UILayer:int { - Bottom = 1, - UI, - Top, - Tips, - System, + Bottom = 0, + UI = 1, + Top = 2, + Tips = 3, + System = 4, } [AttributeUsage(AttributeTargets.Class)]