1234567891011121314151617181920212223242526272829303132333435363738394041 |
- namespace LitMotion
- {
- /// <summary>
- /// Specifies the easing to apply to the animation.
- /// </summary>
- public enum Ease
- {
- Linear,
- InSine,
- OutSine,
- InOutSine,
- InQuad,
- OutQuad,
- InOutQuad,
- InCubic,
- OutCubic,
- InOutCubic,
- InQuart,
- OutQuart,
- InOutQuart,
- InQuint,
- OutQuint,
- InOutQuint,
- InExpo,
- OutExpo,
- InOutExpo,
- InCirc,
- OutCirc,
- InOutCirc,
- InElastic,
- OutElastic,
- InOutElastic,
- InBack,
- OutBack,
- InOutBack,
- InBounce,
- OutBounce,
- InOutBounce,
- CustomAnimationCurve
- }
- }
|