Browse Source

PlaneGeometry: Added console.info().

Mr.doob 11 years ago
parent
commit
1879afff69
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/extras/geometries/PlaneGeometry.js

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

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