14 lines
188 B
C#
14 lines
188 B
C#
|
|
namespace Thousandto.Plugins.Common
|
|
{
|
|
//动画类型
|
|
public enum UIAnimationType
|
|
{
|
|
Alpha,
|
|
Scale,
|
|
Position,
|
|
Rotation,
|
|
Empty,
|
|
}
|
|
}
|