ShaderPass.d.ts 253 B

123456789101112131415
  1. import {
  2. Material
  3. } from '../../../src/Three';
  4. import { Pass } from './Pass';
  5. export class ShaderPass extends Pass {
  6. constructor( shader: object, textureID?: string );
  7. textureID: string;
  8. uniforms: object;
  9. material: Material;
  10. fsQuad: object;
  11. }