BlendShader.d.ts 229 B

1234567891011121314
  1. import {
  2. Uniform
  3. } from '../../../src/Three';
  4. export const BlendShader: {
  5. uniforms: {
  6. tDiffuse1: Uniform;
  7. tDiffuse2: Uniform;
  8. mixRatio: Uniform;
  9. opacity: Uniform;
  10. };
  11. vertexShader: string;
  12. fragmentShader: string;
  13. };