From 00ba79baf04e004b82a03c043d0123bfc2e3cd76 Mon Sep 17 00:00:00 2001 From: ALEXTANG <574809918@qq.com> Date: Tue, 11 Apr 2023 16:58:11 +0800 Subject: [PATCH] Update WindowAttribute.cs --- .../Runtime/GameFramework/UI/WindowAttribute.cs | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) 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)]