init.lua 345 B

12345678910111213
  1. return {
  2. summary = 'Joins two Colliders together.',
  3. description = 'A Joint is a physics object that constrains the movement of two Colliders.',
  4. constructors = {
  5. 'lovr.physics.newBallJoint',
  6. 'lovr.physics.newDistanceJoint',
  7. 'lovr.physics.newHingeJoint',
  8. 'lovr.physics.newSliderJoint'
  9. },
  10. related = {
  11. 'Collider'
  12. }
  13. }