| 1234567891011121314151617181920212223 |
- return {
- summary = 'Get the Colliders the Joint is attached to.',
- description = [[
- Returns the Colliders the Joint is attached to. All Joints are attached to two colliders.
- ]],
- arguments = {},
- returns = {
- colliderA = {
- type = 'Collider',
- description = 'The first Collider.'
- },
- colliderB = {
- type = 'Collider',
- description = 'The second Collider.'
- }
- },
- variants = {
- {
- arguments = {},
- returns = { 'colliderA', 'colliderB' }
- }
- }
- }
|