@tresjs/post-processing
Version:
Post-processing library for TresJS
23 lines (22 loc) • 927 B
TypeScript
import { BlendFunction, DotScreenEffect } from 'postprocessing';
export interface DotScreenPmndrsProps {
/**
* The angle of the dot pattern.
* Default: 1.57
*/
angle?: number;
/**
* The scale of the dot pattern.
* Default: 1.0
*/
scale?: number;
/**
* The blend function. Defines how the effect blends with the original scene.
*/
blendFunction?: BlendFunction;
}
declare const _default: import('vue').DefineComponent<DotScreenPmndrsProps, {
pass: import('vue').ShallowRef<import('postprocessing').EffectPass | null>;
effect: import('vue').ShallowRef<DotScreenEffect | null>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DotScreenPmndrsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;