getJoints.lua 401 B

1234567891011121314151617181920
  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. joints = {
  7. type = 'table',
  8. description = 'A list of Joints attached to the Collider.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'joints' }
  15. }
  16. },
  17. related = {
  18. 'Joint'
  19. }
  20. }