提交 527ceee8 编写于 作者: M Mr.doob

Material: Clean up.

上级 5fe7cb5e
......@@ -151,10 +151,6 @@ Material.prototype = {
data.uuid = this.uuid;
data.type = this.type;
data.depthFunc = this.depthFunc;
data.depthTest = this.depthTest;
data.depthWrite = this.depthWrite;
if ( this.name !== '' ) data.name = this.name;
if ( (this.color && this.color.isColor) ) data.color = this.color.getHex();
......@@ -211,6 +207,11 @@ Material.prototype = {
if ( this.opacity < 1 ) data.opacity = this.opacity;
if ( this.transparent === true ) data.transparent = this.transparent;
data.depthFunc = this.depthFunc;
data.depthTest = this.depthTest;
data.depthWrite = this.depthWrite;
if ( this.alphaTest > 0 ) data.alphaTest = this.alphaTest;
if ( this.premultipliedAlpha === true ) data.premultipliedAlpha = this.premultipliedAlpha;
if ( this.wireframe === true ) data.wireframe = this.wireframe;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册