TapCommon-Unity/UI/Scripts/Params/BasePanelConfig.cs

18 lines
412 B
C#
Raw Normal View History

2023-03-20 14:37:10 +08:00
using UnityEngine;
namespace TapTap.UI
{
[System.Serializable]
public struct BasePanelConfig
{
/// <summary>
/// animation effect related to opening and closing
/// </summary>
public EAnimationMode animationType;
public BasePanelConfig(EAnimationMode animationMode = EAnimationMode.None)
{
animationType = animationMode;
}
}
}