setResponseTime.lua 471 B

123456789101112131415161718
  1. return {
  2. summary = 'Set the response time of the joint.',
  3. description = 'Sets the response time of the joint. See `World:setResponseTime` for more info.',
  4. arguments = {
  5. {
  6. name = 'responseTime',
  7. type = 'number',
  8. description = 'The new response time setting for the joint.'
  9. }
  10. },
  11. returns = {},
  12. related = {
  13. 'BallJoint:getResponseTime',
  14. 'BallJoint:setResponseTime',
  15. 'World:getResponseTime',
  16. 'World:setResponseTime'
  17. }
  18. }