소스 검색

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 );
 
 };