Przeglądaj źródła

Removed leftover unused property

Marius Kintel 10 lat temu
rodzic
commit
e492cdc7a5
1 zmienionych plików z 0 dodań i 2 usunięć
  1. 0 2
      src/renderers/WebGLRenderTarget.js

+ 0 - 2
src/renderers/WebGLRenderTarget.js

@@ -23,8 +23,6 @@ THREE.WebGLRenderTarget = function ( width, height, options ) {
 	this.depthBuffer = options.depthBuffer !== undefined ? options.depthBuffer : true;
 	this.stencilBuffer = options.stencilBuffer !== undefined ? options.stencilBuffer : true;
 
-	this.generateMipmaps = true;
-
 	this.shareDepthFrom = options.shareDepthFrom !== undefined ? options.shareDepthFrom : null;
 
 };