浏览代码

Remove console.log

martinRenou 6 年之前
父节点
当前提交
91f182c1fa
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      examples/jsm/nodes/core/AttributeNode.js

+ 0 - 2
examples/jsm/nodes/core/AttributeNode.js

@@ -37,8 +37,6 @@ AttributeNode.prototype.generate = function ( builder, output ) {
 	var attribute = builder.getAttribute( this.name, type ),
 		name = builder.isShader( 'vertex' ) ? this.name : attribute.varying.name;
 
-	console.log( attribute );
-
 	return builder.format( name, this.getType( builder ), output );
 
 };