@types/three
Version:
TypeScript definitions for three
23 lines (21 loc) • 518 B
TypeScript
import { IUniform } from "three";
export const HalftoneShader: {
name: string;
uniforms: {
tDiffuse: IUniform;
shape: IUniform;
radius: IUniform;
rotateR: IUniform;
rotateG: IUniform;
rotateB: IUniform;
scatter: IUniform;
width: IUniform;
height: IUniform;
blending: IUniform;
blendingMode: IUniform;
greyscale: IUniform;
disable: IUniform;
};
vertexShader: string;
fragmentShader: string;
};