You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/3rd/MPUIKit/Runtime/Scripts/Enums.cs

27 lines
436 B
C#

namespace MPUIKIT
{
public enum DrawShape {
None = 0,
Circle,
Triangle,
Rectangle,
Pentagon,
Hexagon,
NStarPolygon
}
public enum GradientType {
Linear,
Corner,
Radial
}
public enum MaterialMode {
Dynamic,
Shared
}
public enum CornerStyleType {
Sharp, Rounded, Cropped, BoxCut, CircleCut
}
}