Explorar el Código

ShaderPass: Update types

Jonathan Giroux hace 5 años
padre
commit
026c10dd7d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/jsm/postprocessing/ShaderPass.d.ts

+ 1 - 1
examples/jsm/postprocessing/ShaderPass.d.ts

@@ -8,7 +8,7 @@ export class ShaderPass extends Pass {
 
 	constructor( shader: object, textureID?: string );
 	textureID: string;
-	uniforms: object;
+	uniforms: { [name: string]: { value: any } };
 	material: Material;
 	fsQuad: object;