Skip to content

Commit

Permalink
decrease saturation
Browse files Browse the repository at this point in the history
  • Loading branch information
ericjansenrpm committed Jul 16, 2024
1 parent 874f4df commit be4a7f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Avatar/Avatar.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { BaseCanvas } from 'src/components/BaseCanvas';
import { AnimationModel, HalfBodyModel, StaticModel, PoseModel } from 'src/components/Models';
import { isValidFormat, triggerCallback } from 'src/services';
import { Dpr } from '@react-three/fiber';
import { BrightnessContrast, EffectComposer, SSAO, Vignette } from '@react-three/postprocessing';
import { BrightnessContrast, EffectComposer, HueSaturation, SSAO, Vignette } from '@react-three/postprocessing';
import { Provider, useSetAtom } from 'jotai';
import Capture, { CaptureType } from 'src/components/Capture/Capture.component';
import { Box, Background } from 'src/components/Background/Box/Box.component';
Expand Down Expand Up @@ -297,6 +297,7 @@ const Avatar: FC<AvatarProps> = ({
)}
{effects?.vignette && <Vignette eskil={false} offset={0.5} darkness={0.5} />}
<BrightnessContrast brightness={0.025} contrast={0.2} />
<HueSaturation hue={0} saturation={-0.1} />
</>
</EffectComposer>
)}
Expand Down

0 comments on commit be4a7f6

Please sign in to comment.