Hello, I keep runnning into this error:
Uncaught TypeError: class constructors must be invoked with 'new'
MeshLineMaterial THREE.MeshLine.js:499
js app.js:26
and the line that it points to reads as:
const LineMaterial = new MeshLineMaterial({lineWidth: 0.1, color: new THREE.Color(white[0]/255, white[1]/255, white[2]/255),});
I think I am calling a new constructor right?