SmoothMode.lua 549 B

123456789101112131415161718
  1. return {
  2. summary = 'Different ways to interpolate between animation keyframes.',
  3. description = 'Different ways to interpolate between animation keyframes.',
  4. values = {
  5. {
  6. name = 'step',
  7. description = 'The animated property will snap to the nearest keyframe.'
  8. },
  9. {
  10. name = 'linear',
  11. description = 'The animated property will linearly interpolate between keyframes.'
  12. },
  13. {
  14. name = 'cubic',
  15. description = 'The animated property will follow a smooth curve between nearby keyframes.'
  16. }
  17. }
  18. }