Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs Batched/InstancedMesh: emphazise difference #1383

Merged
merged 1 commit into from
Dec 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions types/three/src/objects/BatchedMesh.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ export interface BatchedMeshGeometryRange {
}

/**
* A special version of {@link Mesh} with multi draw batch rendering support. Use {@link BatchedMesh} if you have to
* render a large number of objects with the same material but with different world transformations. The usage of
* {@link BatchedMesh} will help you to reduce the number of draw calls and thus improve the overall rendering
* performance in your application.
* A special version of {@link Mesh} with multi draw batch rendering support. Use BatchedMesh if you have to render a
* large number of objects with the same material but with different geometries or world transformations. The usage of
* BatchedMesh will help you to reduce the number of draw calls and thus improve the overall rendering performance in
* your application.
*
* If the {@link https://developer.mozilla.org/en-US/docs/Web/API/WEBGL_multi_draw WEBGL_multi_draw extension} is not
* supported then a less performant fallback is used.
Expand Down
Loading