UNPKG

lamina

Version:

🍰 An extensable, layer based shader material for ThreeJS.

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