getShapes.lua 454 B

12345678910111213141516171819202122
  1. return {
  2. summary = 'Get a list of Shapes attached to the Collider.',
  3. description = 'Returns a list of Shapes attached to the Collider.',
  4. arguments = {},
  5. returns = {
  6. shapes = {
  7. type = 'table',
  8. description = 'A list of Shapes attached to the Collider.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'shapes' }
  15. }
  16. },
  17. related = {
  18. 'Collider:addShape',
  19. 'Collider:removeShape',
  20. 'Shape'
  21. }
  22. }