|
@@ -47,6 +47,7 @@ import { Color } from '../math/Color';
|
|
* wireframe: <boolean>,
|
|
* wireframe: <boolean>,
|
|
* wireframeLinewidth: <float>,
|
|
* wireframeLinewidth: <float>,
|
|
*
|
|
*
|
|
|
|
+ * skinning: <bool>,
|
|
* morphTargets: <bool>,
|
|
* morphTargets: <bool>,
|
|
* morphNormals: <bool>
|
|
* morphNormals: <bool>
|
|
* }
|
|
* }
|
|
@@ -102,6 +103,7 @@ function MeshStandardMaterial( parameters ) {
|
|
this.wireframeLinecap = 'round';
|
|
this.wireframeLinecap = 'round';
|
|
this.wireframeLinejoin = 'round';
|
|
this.wireframeLinejoin = 'round';
|
|
|
|
|
|
|
|
+ this.skinning = false;
|
|
this.morphTargets = false;
|
|
this.morphTargets = false;
|
|
this.morphNormals = false;
|
|
this.morphNormals = false;
|
|
|
|
|
|
@@ -162,6 +164,7 @@ MeshStandardMaterial.prototype.copy = function ( source ) {
|
|
this.wireframeLinecap = source.wireframeLinecap;
|
|
this.wireframeLinecap = source.wireframeLinecap;
|
|
this.wireframeLinejoin = source.wireframeLinejoin;
|
|
this.wireframeLinejoin = source.wireframeLinejoin;
|
|
|
|
|
|
|
|
+ this.skinning = source.skinning;
|
|
this.morphTargets = source.morphTargets;
|
|
this.morphTargets = source.morphTargets;
|
|
this.morphNormals = source.morphNormals;
|
|
this.morphNormals = source.morphNormals;
|
|
|
|
|