getAnimationCount.lua 346 B

123456789101112131415
  1. return {
  2. summary = 'Get the number of animations the Animator can play.',
  3. description = 'Returns the number of animations the Animator can play.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'count',
  8. type = 'number',
  9. description = 'The number of animations.'
  10. }
  11. },
  12. related = {
  13. 'Animator:getAnimationNames'
  14. }
  15. }