More Corrections
This commit is contained in:
parent
ab0c31c8c3
commit
727ff4a6a3
|
@ -11,7 +11,7 @@ Please **Always** think about the **developers** of such websites and try to **s
|
|||
3. Paste the following
|
||||
|
||||
```
|
||||
var xhr=new XMLHttpRequest;xhr.open("get","https://raw.githubusercontent.com/SaiDAV/SaverSTL/master/herosaver.js",true);xhr.onreadystatechange=function(){if(xhr.readyState==4){var script=document.createElement("script");script.type="text/javascript";script.text=xhr.responseText;document.body.appendChild(script)}};xhr.send(null);
|
||||
var xhr=new XMLHttpRequest;xhr.open("get","https://raw.githubusercontent.com/SaiDAV/SaverSTL/master/dist/saver.min.js",true);xhr.onreadystatechange=function(){if(xhr.readyState==4){var script=document.createElement("script");script.type="text/javascript";script.text=xhr.responseText;document.body.appendChild(script)}};xhr.send(null);
|
||||
```
|
||||
|
||||
### Loading via Greecemonkey or other script loader
|
||||
|
|
|
@ -34,7 +34,7 @@ finalizeMesh.prototype = {
|
|||
|
||||
if (geometry.skinIndexNames == undefined
|
||||
|| geometry.skinIndexNames == 0) {
|
||||
vertex.applyMatrix4(mesh.matrixWorld).applyMatrix4(mrot).applyMatrix4(msca);
|
||||
vertex.applyMatrix4(mesh.matrixWorld); //.applyMatrix4(mrot).applyMatrix4(msca);
|
||||
newGeometry.attributes.position.setXYZ(i, vertex.x, vertex.y, vertex.z);
|
||||
} else {
|
||||
var finalVector = new Vector4();
|
||||
|
|
Loading…
Reference in New Issue