NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Framework/UI/UIEnumDefine.cs

24 lines
555 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

public enum UIWindowType
{
Normal, //普通的(打开的时候关闭其他UI)
PopupTip, //弹窗的(打开的时候不关其他UI)
Fixed, //常显UI
}
public enum UIWindowLayer
{
// 必须连续,数值越大,层级越高, todo 精简层级
None = 0,
BackGround, //
Normal, //普通层级
ForeGround, //
Tips, //提示层级
Notice, //公告层级
Currency, //顶级货币
Guide,//新手引导层
Effect, //特效层级
Waiting, //菊花层级
Max //最高层级
}