14 lines
187 B
C#
Raw Normal View History

2021-12-28 11:25:09 +08:00
namespace Assets.Scripts.UI.UIEffect
{
/// <summary>
/// Shadow effect style.
/// </summary>
public enum ShadowStyle
{
None = 0,
Shadow,
Outline,
Outline8,
Shadow3,
}
}