SOUIViewConfig.cs 491 B

123456789101112131415161718
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace ProjectBase.UI
  5. {
  6. [CreateAssetMenu(menuName = "ScriptableObject/UI view config")]
  7. public class SOUIViewConfig : ScriptableObject
  8. {
  9. public bool unique = true;
  10. public string viewName;
  11. public UIViewLayer viewLayer;
  12. public UIViewCacheScheme cacheScheme;
  13. public string assetName;
  14. public bool coverScreen;
  15. public bool alwaysUpdate;
  16. }
  17. }