@tresjs/post-processing
Version:
Post-processing library for TresJS
25 lines (24 loc) • 909 B
TypeScript
import { BlendFunction, ScanlineEffect } from 'postprocessing';
export interface ScanlinePmndrsProps {
/**
* The blend function.
*/
blendFunction?: BlendFunction;
/**
* The density of the scanlines.
*/
density?: number;
/**
* The density of the scanlines.
*/
scrollSpeed?: number;
/**
* The opacity of the scanlines.
*/
opacity?: number;
}
declare const _default: import('vue').DefineComponent<ScanlinePmndrsProps, {
pass: import('vue').ShallowRef<import('postprocessing').EffectPass | null>;
effect: import('vue').ShallowRef<ScanlineEffect | null>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ScanlinePmndrsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;