Skip to content

Commit 9717cc9

Browse files
committed
Updated builds.
1 parent 85a60d5 commit 9717cc9

File tree

7 files changed

+1045
-141
lines changed

7 files changed

+1045
-141
lines changed

build/three.cjs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34386,6 +34386,23 @@ class BatchedMesh extends Mesh {
3438634386

3438734387
}
3438834388

34389+
getGeometryRangeAt( geometryId, target = {} ) {
34390+
34391+
if ( geometryId < 0 || geometryId >= this._geometryCount ) {
34392+
34393+
return null;
34394+
34395+
}
34396+
34397+
const drawRange = this._drawRanges[ geometryId ];
34398+
34399+
target.start = drawRange.start;
34400+
target.count = drawRange.count;
34401+
34402+
return target;
34403+
34404+
}
34405+
3438934406
raycast( raycaster, intersects ) {
3439034407

3439134408
const drawInfo = this._drawInfo;

build/three.module.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34384,6 +34384,23 @@ class BatchedMesh extends Mesh {
3438434384

3438534385
}
3438634386

34387+
getGeometryRangeAt( geometryId, target = {} ) {
34388+
34389+
if ( geometryId < 0 || geometryId >= this._geometryCount ) {
34390+
34391+
return null;
34392+
34393+
}
34394+
34395+
const drawRange = this._drawRanges[ geometryId ];
34396+
34397+
target.start = drawRange.start;
34398+
target.count = drawRange.count;
34399+
34400+
return target;
34401+
34402+
}
34403+
3438734404
raycast( raycaster, intersects ) {
3438834405

3438934406
const drawInfo = this._drawInfo;

build/three.module.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)