Ease.cs 738 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. namespace LitMotion
  2. {
  3. /// <summary>
  4. /// Specifies the easing to apply to the animation.
  5. /// </summary>
  6. public enum Ease
  7. {
  8. Linear,
  9. InSine,
  10. OutSine,
  11. InOutSine,
  12. InQuad,
  13. OutQuad,
  14. InOutQuad,
  15. InCubic,
  16. OutCubic,
  17. InOutCubic,
  18. InQuart,
  19. OutQuart,
  20. InOutQuart,
  21. InQuint,
  22. OutQuint,
  23. InOutQuint,
  24. InExpo,
  25. OutExpo,
  26. InOutExpo,
  27. InCirc,
  28. OutCirc,
  29. InOutCirc,
  30. InElastic,
  31. OutElastic,
  32. InOutElastic,
  33. InBack,
  34. OutBack,
  35. InOutBack,
  36. InBounce,
  37. OutBounce,
  38. InOutBounce,
  39. CustomAnimationCurve
  40. }
  41. }