Explorar el Código

Merge pull request #16954 from martinRenou/remove_consolelog

Nodes/core/AttributeNode.js: Remove console.log
Michael Herzog hace 6 años
padre
commit
c411c0b7ff
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  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 ),
 	var attribute = builder.getAttribute( this.name, type ),
 		name = builder.isShader( 'vertex' ) ? this.name : attribute.varying.name;
 		name = builder.isShader( 'vertex' ) ? this.name : attribute.varying.name;
 
 
-	console.log( attribute );
-
 	return builder.format( name, this.getType( builder ), output );
 	return builder.format( name, this.getType( builder ), output );
 
 
 };
 };