@react-three/postprocessing
Version:
postprocessing wrapper for React and @react-three/fiber
10 lines (9 loc) • 351 B
TypeScript
import { LUT3DEffect, BlendFunction } from 'postprocessing';
import React from 'react';
import type { Texture } from 'three';
export type LUTProps = {
lut: Texture;
blendFunction?: BlendFunction;
tetrahedralInterpolation?: boolean;
};
export declare const LUT: React.ForwardRefExoticComponent<LUTProps & React.RefAttributes<LUT3DEffect>>;