UNPKG

three-stdlib

Version:

stand-alone library of threejs examples

22 lines (21 loc) 375 B
/** * Blend two textures */ export declare const BlendShader: { uniforms: { tDiffuse1: { value: null; }; tDiffuse2: { value: null; }; mixRatio: { value: number; }; opacity: { value: number; }; }; vertexShader: string; fragmentShader: string; };