| 1234567891011121314151617181920212223242526272829303132 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace ProjectBase.UI
- {
- /// <summary>
- /// UI显示状态
- /// </summary>
- public enum UIViewState
- {
- Nonvisible, //不可见的
- Visible, //可见的
- Cache, //在缓存中
- }
- public enum UIViewLayer
- {
- None,
- BackGround,
- Base,
- Popup,
- Top,
- Debug
- }
- public enum UIViewCacheScheme
- {
- Remove,
- Cache
- }
- }
|