فهرست منبع

Add LUTPass dts

Garrett Johnson 4 سال پیش
والد
کامیت
19e16a5108
1فایلهای تغییر یافته به همراه18 افزوده شده و 0 حذف شده
  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 );
+
+}