getDistance.lua 350 B

123456789101112131415
  1. return {
  2. summary = 'Get the target distance of the DistanceJoint.',
  3. description = [[
  4. Returns the target distance for the DistanceJoint. The joint tries to keep the Colliders this
  5. far apart.
  6. ]],
  7. arguments = {},
  8. returns = {
  9. {
  10. name = 'distance',
  11. type = 'number',
  12. description = 'The target distance.'
  13. }
  14. }
  15. }