getTextureCount.lua 393 B

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