AnimationProperty.lua 469 B

12345678910111213141516171819202122
  1. return {
  2. summary = 'Different animated properties.',
  3. description = 'This indicates the different node properties that can be animated.',
  4. values = {
  5. {
  6. name = 'translation',
  7. description = 'Node translation.'
  8. },
  9. {
  10. name = 'rotation',
  11. description = 'Node rotation.'
  12. },
  13. {
  14. name = 'scale',
  15. description = 'Node scale.'
  16. },
  17. {
  18. name = 'weights',
  19. description = 'Node blend shape weights.'
  20. }
  21. }
  22. }