getAnimationCount.lua 460 B

12345678910111213141516171819202122
  1. return {
  2. summary = 'Get the number of animations in the Model.',
  3. description = 'Returns the number of animations in the Model.',
  4. arguments = {},
  5. returns = {
  6. count = {
  7. type = 'number',
  8. description = 'The number of animations in the Model.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'count' }
  15. }
  16. },
  17. related = {
  18. 'Model:getAnimationName',
  19. 'Model:getAnimationDuration',
  20. 'Model:animate'
  21. }
  22. }