setResponseTime.lua 546 B

1234567891011121314151617181920212223
  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. responseTime = {
  6. type = 'number',
  7. description = 'The new response time setting for the joint.'
  8. }
  9. },
  10. returns = {},
  11. variants = {
  12. {
  13. arguments = { 'responseTime' },
  14. returns = {}
  15. }
  16. },
  17. related = {
  18. 'BallJoint:getResponseTime',
  19. 'BallJoint:setResponseTime',
  20. 'World:getResponseTime',
  21. 'World:setResponseTime'
  22. }
  23. }