1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00
Oinktube/node_modules/three/examples/jsm/postprocessing/TexturePass.d.ts
2023-12-11 11:59:56 -03:00

17 lines
285 B
TypeScript

import {
Texture,
ShaderMaterial
} from '../../../src/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;
}