UNPKG

three-stdlib

Version:

stand-alone library of threejs examples

17 lines (16 loc) 287 B
import { Color } from 'three'; /** * Colorify shader */ export declare const ColorifyShader: { uniforms: { tDiffuse: { value: null; }; color: { value: Color; }; }; vertexShader: string; fragmentShader: string; };