| 12345678910111213141516171819202122232425262728293031323334353637 |
- return {
- summary = 'Set the anchor points of the DistanceJoint.',
- description = 'Sets the anchor points of the DistanceJoint.',
- arguments = {
- {
- name = 'x1',
- type = 'number',
- description = 'The x coordinate of the first anchor point, in world coordinates.'
- },
- {
- name = 'y1',
- type = 'number',
- description = 'The y coordinate of the first anchor point, in world coordinates.'
- },
- {
- name = 'z1',
- type = 'number',
- description = 'The z coordinate of the first anchor point, in world coordinates.'
- },
- {
- name = 'x2',
- type = 'number',
- description = 'The x coordinate of the second anchor point, in world coordinates.'
- },
- {
- name = 'y2',
- type = 'number',
- description = 'The y coordinate of the second anchor point, in world coordinates.'
- },
- {
- name = 'z2',
- type = 'number',
- description = 'The z coordinate of the second anchor point, in world coordinates.'
- }
- },
- returns = {}
- }
|