getAnimationCount.lua 392 B

1234567891011121314151617
  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. {
  7. name = 'count',
  8. type = 'number',
  9. description = 'The number of animations in the Model.'
  10. }
  11. },
  12. related = {
  13. 'Model:getAnimationName',
  14. 'Model:getAnimationDuration',
  15. 'Model:animate'
  16. }
  17. }