UIEnum.cs 504 B

1234567891011121314151617181920212223242526272829303132
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace ProjectBase.UI
  5. {
  6. /// <summary>
  7. /// UI显示状态
  8. /// </summary>
  9. public enum UIViewState
  10. {
  11. Nonvisible, //不可见的
  12. Visible, //可见的
  13. Cache, //在缓存中
  14. }
  15. public enum UIViewLayer
  16. {
  17. None,
  18. BackGround,
  19. Base,
  20. Popup,
  21. Top,
  22. Debug
  23. }
  24. public enum UIViewCacheScheme
  25. {
  26. Remove,
  27. Cache
  28. }
  29. }