three-stdlib
Version:
stand-alone library of threejs examples
14 lines (11 loc) • 349 B
TypeScript
import { DataTexture, Texture } from 'three'
import { ShaderPass } from './ShaderPass'
export interface LUTPassParameters {
lut?: DataTexture | Texture // Data3DTexture
intensity?: number
}
export class LUTPass extends ShaderPass {
lut?: DataTexture | Texture // Data3DTexture
intensity?: number
constructor(params: LUTPassParameters)
}