I tried to use Accumulative Shadows but it doesn’t look as it should. Can you please help me fix it? Thanks.
export const App = () => {
return (
<Canvas
gl={{ antialias: false }}
camera={{ position: [-4.5, 1.5, 4], fov: 55 }}
shadows
>
<OrbitControls minPolarAngle={0} maxPolarAngle={Math.PI / 2} />
<Effects />
<Environment preset="warehouse" />
<group position={[0, -0.25, 0]}>
<Model scale={0.25} />
<AccumulativeShadows
resolution={1024}
frames={100}
color={"#0c575f"}
alphaTest={0.68}
colorBlend={1.5}
opacity={1.65}
scale={12}
>
<RandomizedLight
radius={30}
ambient={0.8}
position={[10, 5, -15]}
bias={0.001}
/>
</AccumulativeShadows>
</group>
</Canvas>
);
};