2
0
Эх сурвалжийг харах

Change 'Material' to 'ShaderMaterial' in ShaderPass.d.ts #19714

jhl 5 жил өмнө
parent
commit
9f8b64a84f

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

@@ -1,15 +1,15 @@
 import {
-	Material
+	ShaderMaterial
 } from '../../../src/Three';
 
 import { Pass } from './Pass';
 
 export class ShaderPass extends Pass {
 
-	constructor( shader: object, textureID?: string );
+	constructor(shader: object, textureID?: string);
 	textureID: string;
 	uniforms: { [name: string]: { value: any } };
-	material: Material;
+	material: ShaderMaterial;
 	fsQuad: object;
 
 }