replicad
replicad copied to clipboard
THREE.Object3D.Default_Up.set(0, 0, 1) should be THREE.Object3D.DEFAULT_UP.set(0, 0, 1);
I just cloned the sample app repo and had to update some of the dependencies to get it to run. However, then I got an error that
THREE.Object3D.Default_Up is undefined
which I had to fix by changing it to
THREE.Object3D.DEFAULT_UP.set(0, 0, 1);