Browse Source

Merge pull request #16954 from martinRenou/remove_consolelog

Nodes/core/AttributeNode.js: Remove console.log
Michael Herzog 6 years ago
parent
commit
c411c0b7ff
1 changed files with 0 additions and 2 deletions
  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 );
 
 };