Open samyhocine opened 3 years ago
Hi,
Beware, threeJS has changed the way to get the inverse matrix.
Line 142 of THREE.MeshLine.js it's:
inverseMatrix.getInverse(this.matrixWorld)
And now it should be:
inverseMatrix.copy(this.matrixWorld).invert()
Best regards ;)
Samy
Hi,
Beware, threeJS has changed the way to get the inverse matrix.
Line 142 of THREE.MeshLine.js it's:
And now it should be:
Best regards ;)
Samy