@tresjs/post-processing
Version:
Post-processing library for TresJS
23 lines (22 loc) • 1.06 kB
TypeScript
import { BlendFunction, HueSaturationEffect } from 'postprocessing';
export interface HueSaturationPmndrsProps {
/**
* The saturation adjustment. A value of 0.0 results in grayscale, and 1.0 leaves saturation unchanged.
* Range: [0.0, 1.0]
*/
saturation?: number;
/**
* The hue adjustment in radians.
* Range: [-π, π] (or [0, 2π] for a full rotation)
*/
hue?: number;
/**
* The blend function. Defines how the effect blends with the original scene.
*/
blendFunction?: BlendFunction;
}
declare const _default: import('vue').DefineComponent<HueSaturationPmndrsProps, {
pass: import('vue').ShallowRef<import('postprocessing').EffectPass | null>;
effect: import('vue').ShallowRef<HueSaturationEffect | null>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<HueSaturationPmndrsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;