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