getType.lua 345 B

1234567891011121314151617181920
  1. return {
  2. summary = 'Get the type of the Joint.',
  3. description = 'Returns the type of the Joint.',
  4. arguments = {},
  5. returns = {
  6. type = {
  7. type = 'JointType',
  8. description = 'The type of the Joint.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'type' }
  15. }
  16. },
  17. related = {
  18. 'JointType'
  19. }
  20. }