UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

18 lines (13 loc) 272 B
import { Texture, ShaderMaterial } from 'three'; import { Pass } from './Pass'; export class TexturePass extends Pass { constructor( map: Texture, opacity?: number ); map: Texture; opacity: number; uniforms: object; material: ShaderMaterial; fsQuad: object; }