getAnimationCount.lua 406 B

1234567891011121314151617181920
  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:getAnimationCount'
  19. }
  20. }