@tresjs/post-processing
Version:
Post-processing library for TresJS
19 lines (18 loc) • 797 B
TypeScript
import { DepthPackingStrategies } from 'three';
import { DepthCopyMode, DepthPickingPass } from 'postprocessing';
export interface DepthPickingPassPmndrsProps {
/**
* The depth packing strategy.
* Default: RGBADepthPacking
*/
depthPacking?: DepthPackingStrategies;
/**
* The depth copy mode.
* Default: DepthCopyMode.SINGLE
*/
mode?: DepthCopyMode;
}
declare const _default: import('vue').DefineComponent<DepthPickingPassPmndrsProps, {
pass: DepthPickingPass;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DepthPickingPassPmndrsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;