|
@@ -70,6 +70,7 @@ THREE.MaterialLoader.prototype = {
|
|
|
if ( json.alphaTest !== undefined ) material.alphaTest = json.alphaTest;
|
|
|
if ( json.depthTest !== undefined ) material.depthTest = json.depthTest;
|
|
|
if ( json.depthWrite !== undefined ) material.depthWrite = json.depthWrite;
|
|
|
+ if ( json.colorWrite !== undefined ) material.colorWrite = json.colorWrite;
|
|
|
if ( json.wireframe !== undefined ) material.wireframe = json.wireframe;
|
|
|
if ( json.wireframeLinewidth !== undefined ) material.wireframeLinewidth = json.wireframeLinewidth;
|
|
|
|