UNPKG

lamina

Version:

🍰 An extensable, layer based shader material for ThreeJS.

10 lines (9 loc) 296 B
import { MatcapProps } from "../types"; import Abstract from "./Abstract"; export default class Matcap extends Abstract { static u_alpha: number; static u_map: undefined; static vertexShader: string; static fragmentShader: string; constructor(props?: MatcapProps); }