Files
Project_Velocity/Software/app/node_modules/three-stdlib/postprocessing/LUTPass.d.ts
2026-02-21 09:09:20 +05:30

14 lines
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)
}