@tresjs/post-processing
Version:
Post-processing library for TresJS
16 lines (15 loc) • 760 B
TypeScript
import { BlendFunction, NoiseEffect } from 'postprocessing';
export interface NoisePmndrsProps {
/**
* Whether the noise should be multiplied with the input color.
*/
premultiply?: boolean;
blendFunction?: BlendFunction;
}
declare const _default: import('vue').DefineComponent<NoisePmndrsProps, {
pass: import('vue').ShallowRef<import('postprocessing').EffectPass | null>;
effect: import('vue').ShallowRef<NoiseEffect | null>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NoisePmndrsProps> & Readonly<{}>, {
premultiply: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;