Răsfoiți Sursa

remove uuid from WebGLRenderTarget

aardgoose 8 ani în urmă
părinte
comite
01cae4ee60
1 a modificat fișierele cu 0 adăugiri și 3 ștergeri
  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;
 

粤ICP备19079148号