提交 2f330aa2 编写于 作者: M Mr.doob

Yet more post release fixes.

上级 9e114522
......@@ -32873,7 +32873,7 @@ THREE.PlaneGeometry = function ( width, height, widthSegments, heightSegments )
face.vertexNormals.push( normal.clone(), normal.clone(), normal.clone() );
this.faces.push( face );
this.faceVertexUvs[ 0 ].push( [ uvb, uvc, uvd ] );
this.faceVertexUvs[ 0 ].push( [ uvb.clone(), uvc, uvd.clone() ] );
}
......@@ -33041,7 +33041,7 @@ THREE.SphereGeometry = function ( radius, widthSegments, heightSegments, phiStar
this.faceVertexUvs[ 0 ].push( [ uv1, uv2, uv4 ] );
this.faces.push( new THREE.Face3( v2, v3, v4, [ n2, n3, n4 ] ) );
this.faceVertexUvs[ 0 ].push( [ uv2, uv3, uv4 ] );
this.faceVertexUvs[ 0 ].push( [ uv2.clone(), uv3, uv4.clone() ] );
}
......@@ -33276,7 +33276,7 @@ THREE.TorusKnotGeometry = function ( radius, tube, radialSegments, tubularSegmen
this.faceVertexUvs[ 0 ].push( [ uva, uvb, uvd ] );
this.faces.push( new THREE.Face3( b, c, d ) );
this.faceVertexUvs[ 0 ].push( [ uvb, uvc, uvd ] );
this.faceVertexUvs[ 0 ].push( [ uvb.clone(), uvc, uvd.clone() ] );
}
}
......@@ -33420,7 +33420,7 @@ THREE.TubeGeometry = function( path, segments, radius, radialSegments, closed )
this.faceVertexUvs[ 0 ].push( [ uva, uvb, uvd ] );
this.faces.push( new THREE.Face3( b, c, d ) );
this.faceVertexUvs[ 0 ].push( [ uvb, uvc, uvd ] );
this.faceVertexUvs[ 0 ].push( [ uvb.clone(), uvc, uvd.clone() ] );
}
}
......@@ -33930,7 +33930,7 @@ THREE.ParametricGeometry = function ( func, slices, stacks ) {
uvs.push( [ uva, uvb, uvd ] );
faces.push( new THREE.Face3( b, c, d ) );
uvs.push( [ uvb, uvc, uvd ] );
uvs.push( [ uvb.clone(), uvc, uvd.clone() ] );
}
......
此差异已折叠。
......@@ -2635,7 +2635,7 @@ THREE.ColladaLoader = function () {
} else {
uvArr = [ uv[1], uv[2], uv[3] ];
uvArr = [ uv[1].clone(), uv[2], uv[3].clone() ];
}
......
......@@ -95,6 +95,7 @@
<h1>three.js<span style="font-size: 50%; vertical-align: super;"> r60</span></h1>
<a href="http://github.com/mrdoob/three.js/zipball/master">download</a><br /><br />
<a href="http://github.com/mrdoob/three.js/releases">change log</a><br /><br />
<a href="http://www.aerotwist.com/lab/getting-started-with-three-js/">getting started</a><br />
<a href="docs/">documentation</a><br />
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册