Open sabinayakc opened 4 months ago
I'm assuming this is using <AccumulativeShadows>
.
Steps to fix:
Im using
<Stage
intensity={1}
preset="rembrandt"
shadows={{
type: 'accumulative',
color: 'skyblue',
colorBlend: 2,
opacity: 1
}}
adjustCamera={1}
environment="city"
>
try adding intensity: Math.PI
to the shadows
prop. Like so :
<Stage
intensity={1}
preset="rembrandt"
shadows={{
type: 'accumulative',
color: 'skyblue',
colorBlend: 2,
opacity: 1,
intensity: Math.PI
}}
adjustCamera={1}
environment="city"
>
Problem description:
I upgraded to the latest
three
and I see a weird plane geometry. It happens in other cases as well.Relevant code: Update this codesandbox to the latest versions.
https://codesandbox.io/s/57iefg