init.lua 486 B

12345678910111213141516
  1. return {
  2. summary = 'A single entity in a physics simulation.',
  3. description = [[
  4. Colliders are objects that represent a single rigid body in a physics simulation. They can
  5. have forces applied to them and collide with other colliders.
  6. ]],
  7. constructors = {
  8. 'World:newCollider',
  9. 'World:newBoxCollider',
  10. 'World:newCapsuleCollider',
  11. 'World:newCylinderCollider',
  12. 'World:newSphereCollider',
  13. 'World:newMeshCollider',
  14. 'World:newTerrainCollider'
  15. }
  16. }