UNPKG

three-stdlib

Version:

stand-alone library of threejs examples

18 lines (17 loc) 326 B
/** * Sepia tone shader * based on glfx.js sepia shader * https://github.com/evanw/glfx.js */ export declare const SepiaShader: { uniforms: { tDiffuse: { value: null; }; amount: { value: number; }; }; vertexShader: string; fragmentShader: string; };