removeShape.lua 403 B

123456789101112131415161718
  1. return {
  2. summary = 'Remove a Shape from the Collider.',
  3. description = 'Removes a Shape from the Collider.',
  4. arguments = {
  5. {
  6. name = 'shape',
  7. type = 'Shape',
  8. description = 'The Shape to remove.'
  9. }
  10. },
  11. returns = {},
  12. notes = 'Colliders without any shapes won\'t collide with anything.',
  13. related = {
  14. 'Collider:addShape',
  15. 'Collider:getShapes',
  16. 'Shape'
  17. }
  18. }