| 123456789101112131415161718 |
- return {
- summary = 'Different ways to interpolate between animation keyframes.',
- description = 'Different ways to interpolate between animation keyframes.',
- values = {
- {
- name = 'step',
- description = 'The animated property will snap to the nearest keyframe.'
- },
- {
- name = 'linear',
- description = 'The animated property will linearly interpolate between keyframes.'
- },
- {
- name = 'cubic',
- description = 'The animated property will follow a smooth curve between nearby keyframes.'
- }
- }
- }
|