You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(docs): add some proper generated docs with Typedoc (#248)
* feat(docs): add some proper generated docs with Typedoc
- Clean up a lot of types
- Rename a heck ton of types in the back
- Export a lot of missing types that could be useful
Allow translation of this rigid body only along specific axes.
161
-
-`userData`?: `any`
162
-
Passed down to the object3d representing this collider.
163
-
-`includeInvisible`?: `boolean`
164
-
Include invisible objects on the collider creation estimation.
165
-
-`onCollisionEnter`?: `function`
166
-
See [Collision Events](#collision-events).
167
-
-`onCollisionExit`?: `function`
168
-
See [Collision Events](#collision-events).
114
+
For available props: see [RigidBody docs](#rigidbody-props)
115
+
169
116
170
117
## Automatic Colliders
171
118
@@ -216,69 +163,6 @@ const Scene = () => (
216
163
217
164
You can also create `Colliders` by hand and add them to a `RigidBody` to create compound colliders. This is useful for creating more complex shapes, for creating simplified shapes for performance reasons, or for detecting collisions on specific parts of a mesh.
A capsule collider. The capsule is centered on the local-space Y axis.
228
-
-`<HeightfieldCollider args={[width, height, heights, scale]} />`
229
-
A heightfield collider is a heightmap represented by a grid of heights. The heightmap is centered on the local-space Y axis.
230
-
-`<TrimeshCollider args={[vertices, indices]} />`
231
-
A trimesh collider is a concave shape that is automatically computed from a set of points. It is more precise than a convex hull collider, but it is also more expensive to compute and to simulate.
232
-
-`<ConeCollider args={[halfHeight, radius]} />`
233
-
A cone collider. The cone is centered on the local-space Y axis.
A convex hull collider is a convex shape that is automatically computed from a set of points. It is a good approximation of a concave shape, but it is not as precise as a trimesh collider. It is also more efficient to compute and to simulate.
238
-
-`<MeshCollider />`
239
-
Wraps one or more `meshes` to generate automatic colliders. Useful for combining with other primitive colliders where you need both simple and complex shapes.
Sets the uniform density of this collider. If this is set, other mass-properties like the angular inertia tensor are computed automatically from the collider's shape. More info https://rapier.rs/docs/user_guides/javascript/colliders#mass-properties
276
-
-`mass`?: `number`
277
-
Generally, it's not recommended to adjust the mass properties as it could lead to unexpected behaviors. Cannot be used at the same time as the density or massProperties values. More info https://rapier.rs/docs/user_guides/javascript/colliders#mass-properties
The mass properties of this rigid body. Cannot be used at the same time as the density or mass values. More info https://rapier.rs/docs/user_guides/javascript/colliders#mass-properties
280
-
281
-
282
166
```tsx
283
167
const Scene = () => (<>
284
168
{/* Make a compound shape with two custom BallColliders */}
0 commit comments