Browse Source

Add LUTPass dts

Garrett Johnson 4 years ago
parent
commit
19e16a5108
1 changed files with 18 additions and 0 deletions
  1. 18 0
      examples/jsm/postprocessing/LUTPass.d.ts

+ 18 - 0
examples/jsm/postprocessing/LUTPass.d.ts

@@ -0,0 +1,18 @@
+import {
+	DataTexture,
+	DataTexture3D,
+} from '../../../src/Three';
+import { ShaderPass } from './ShaderPass';
+
+export interface LUTPassParameters {
+	lut?: DataTexture | DataTexture3D;
+	intensity?: number;
+}
+
+export class LUTPass extends ShaderPass {
+
+	lut?: DataTexture | DataTexture3D;
+	intensity?: number;
+	constructor( params: LUTPassParameters );
+
+}