Capítulo 602 de 988
_Part of the @remotion/effects package.
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<Solid
width={1280}
height={720}
color="#fff4d0"
effects={[
paper({
roughness: 0.4,
fiber: 0.3,
fiberSize: 0.2,
crumples: 0.3,
crumpleSize: 0.35,
folds: 0.65,
foldCount: 5,
drops: 0.2,
scale: 0.6,
seed: 6,
}),
]}
/>
</AbsoluteFill>
);
};