getJoints.lua 332 B

123456789101112131415
  1. return {
  2. summary = 'Get a list of Joints attached to the Collider.',
  3. description = 'Returns a list of Joints attached to the Collider.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'joints',
  8. type = 'table',
  9. description = 'A list of Joints attached to the Collider.'
  10. }
  11. },
  12. related = {
  13. 'Joint'
  14. }
  15. }