Browse Source

Remove console log from PlaneGeometry

Doesn't seem like we need a console log every time PlaneGeometry is used. Is PlaneGeometry really that bad?
Felix Turner 10 years ago
parent
commit
dd74de1edf
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';