Skip to content

Commit c68fc50

Browse files
authored
fix: updates meshBounds for three.js r124 (#299)
* Update meshBounds for r124
1 parent 22acb84 commit c68fc50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/meshBounds.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function meshBounds(raycaster: Raycaster, intersects: Intersection[]) {
1515
_sphere.copy(geometry.boundingSphere)
1616
_sphere.applyMatrix4(matrixWorld)
1717
if (raycaster.ray.intersectsSphere(_sphere) === false) return
18-
_inverseMatrix.getInverse(matrixWorld)
18+
_inverseMatrix.copy(matrixWorld).invert()
1919
_ray.copy(raycaster.ray).applyMatrix4(_inverseMatrix)
2020
// Check boundingBox before continuing
2121
if (geometry.boundingBox !== null && _ray.intersectBox(geometry.boundingBox, _vA) === null) return

0 commit comments

Comments
 (0)