setTightness.lua 448 B

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