@tresjs/post-processing
Version:
Post-processing library for TresJS
16 lines (15 loc) • 815 B
TypeScript
import { BlendFunction } from 'postprocessing';
import { LinocutEffect } from './custom/linocut/index';
import { Vector2 } from 'three';
export interface LinocutPmndrsProps {
blendFunction?: BlendFunction;
scale?: number;
noiseScale?: number;
center?: Vector2 | [number, number];
rotation?: number;
}
declare const _default: import('vue').DefineComponent<LinocutPmndrsProps, {
pass: import('vue').ShallowRef<import('postprocessing').EffectPass | null>;
effect: import('vue').ShallowRef<LinocutEffect | null>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<LinocutPmndrsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;