getTightness.lua 451 B

1234567891011121314151617181920
  1. return {
  2. summary = 'Get the joint tightness.',
  3. description = [[
  4. Returns the tightness of the joint. See `World:setTightness` for how this affects the joint.
  5. ]],
  6. arguments = {},
  7. returns = {
  8. {
  9. name = 'tightness',
  10. type = 'number',
  11. description = 'The tightness of the joint.'
  12. }
  13. },
  14. related = {
  15. 'BallJoint:getTightness',
  16. 'BallJoint:setTightness',
  17. 'World:getTightness',
  18. 'World:setTightness'
  19. }
  20. }