removeShape.lua 471 B

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