15 lines
249 B
C#
15 lines
249 B
C#
|
namespace DC.Animator.Core
|
|||
|
{
|
|||
|
public enum AnimatableProperty
|
|||
|
{
|
|||
|
Position,
|
|||
|
LocalPosition,
|
|||
|
AnchoredPosition,
|
|||
|
Scale,
|
|||
|
Rotation,
|
|||
|
EulerAngles,
|
|||
|
Alpha,
|
|||
|
Color,
|
|||
|
TextColor
|
|||
|
}
|
|||
|
}
|