CopyShader.d.ts 184 B

123456789101112
  1. import {
  2. Uniform
  3. } from '../../../src/Three';
  4. export const CopyShader: {
  5. uniforms: {
  6. tDiffuse: Uniform;
  7. opacity: Uniform;
  8. };
  9. vertexShader: string;
  10. fragmentShader: string;
  11. };