getShapes.lua 385 B

1234567891011121314151617
  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. {
  7. name = 'shapes',
  8. type = 'table',
  9. description = 'A list of Shapes attached to the Collider.'
  10. }
  11. },
  12. related = {
  13. 'Collider:addShape',
  14. 'Collider:removeShape',
  15. 'Shape'
  16. }
  17. }