|
@@ -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;
|
|
|
|
|
|
}
|