BasePanelConfig.cs 412 B

123456789101112131415161718
  1. using UnityEngine;
  2. namespace TapSDK.UI
  3. {
  4. [System.Serializable]
  5. public struct BasePanelConfig
  6. {
  7. /// <summary>
  8. /// animation effect related to opening and closing
  9. /// </summary>
  10. public EAnimationMode animationType;
  11. public BasePanelConfig(EAnimationMode animationMode = EAnimationMode.None)
  12. {
  13. animationType = animationMode;
  14. }
  15. }
  16. }