Browse Source

Merge pull request #13462 from aardgoose/remove-uuid-1

remove uuid from WebGLRenderTarget
Mr.doob 7 years ago
parent
commit
466bdc9d06
1 changed files with 0 additions and 3 deletions
  1. 0 3
      src/renderers/WebGLRenderTarget.js

+ 0 - 3
src/renderers/WebGLRenderTarget.js

@@ -2,7 +2,6 @@ import { EventDispatcher } from '../core/EventDispatcher.js';
 import { Texture } from '../textures/Texture.js';
 import { LinearFilter } from '../constants.js';
 import { Vector4 } from '../math/Vector4.js';
-import { _Math } from '../math/Math.js';
 
 /**
  * @author szimek / https://github.com/szimek/
@@ -17,8 +16,6 @@ import { _Math } from '../math/Math.js';
 */
 function WebGLRenderTarget( width, height, options ) {
 
-	this.uuid = _Math.generateUUID();
-
 	this.width = width;
 	this.height = height;