Browse Source

Merge pull request #6675 from felixturner/patch-2

Remove console log from PlaneGeometry
Ricardo Cabello 10 years ago
parent
commit
55e1063d1a
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/extras/geometries/PlaneGeometry.js

+ 0 - 2
src/extras/geometries/PlaneGeometry.js

@@ -5,8 +5,6 @@
 
 THREE.PlaneGeometry = function ( width, height, widthSegments, heightSegments ) {
 
-	console.log( 'THREE.PlaneGeometry: Consider using THREE.PlaneBufferGeometry for lower memory footprint.' );
-
 	THREE.Geometry.call( this );
 
 	this.type = 'PlaneGeometry';