IndieGame/client/Assets/Ether/Scripts/Module/UI/FrameEnum.cs

38 lines
827 B
C#
Raw Normal View History

2024-10-11 10:12:15 +08:00
/********************************************************************
: FrameEnum.cs
:
: 1982614048@qq.com
: 2024/03/29 17:28:19
:
: 2024/04/03 16:00:58
:
*********************************************************************/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ether
{
/// <summary>
/// 界面层级
/// </summary>
public enum FrameTier
{
Bottom = 0,
Middle = 1,
Top = 2,
MaxTop = 3,
}
/// <summary>
/// 界面类型
/// </summary>
public enum FrameType
{
Frame = 0, //全屏界面
Window = 1, //窗口界面
Pop = 2, //弹窗界面
Tips = 3, //提示
}
}