UNPKG

three-stdlib

Version:

stand-alone library of threejs examples

19 lines (18 loc) 374 B
/** * Mirror Shader * Copies half the input to the other half * * side: side of input to mirror (0 = left, 1 = right, 2 = top, 3 = bottom) */ export declare const MirrorShader: { uniforms: { tDiffuse: { value: null; }; side: { value: number; }; }; vertexShader: string; fragmentShader: string; };