Explorar el Código

WebGLCubeRenderTarget: simplify constructor signature

WestLangley hace 5 años
padre
commit
2310a6b419
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      src/renderers/WebGLCubeRenderTarget.d.ts

+ 1 - 2
src/renderers/WebGLCubeRenderTarget.d.ts

@@ -5,8 +5,7 @@ import { Texture } from './../textures/Texture';
 export class WebGLCubeRenderTarget extends WebGLRenderTarget {
 
 	constructor(
-		width: number,
-		height: number,
+		resolution: number,
 		options?: WebGLRenderTargetOptions
 	);