summit/frontend/node_modules/three-stdlib/postprocessing/TexturePass.d.ts

13 lines
288 B
TypeScript
Raw Normal View History

2025-12-08 16:31:30 +00:00
import { Texture, ShaderMaterial } from 'three'
import { Pass, FullScreenQuad } from './Pass'
export class TexturePass extends Pass {
constructor(map: Texture, opacity?: number)
map: Texture
opacity: number
uniforms: object
material: ShaderMaterial
fsQuad: FullScreenQuad
}