Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+16
View File
@@ -0,0 +1,16 @@
import { useEffect } from 'react';
import { useThree } from '@react-three/fiber';
function BakeShadows() {
const gl = useThree(state => state.gl);
useEffect(() => {
gl.shadowMap.autoUpdate = false;
gl.shadowMap.needsUpdate = true;
return () => {
gl.shadowMap.autoUpdate = gl.shadowMap.needsUpdate = true;
};
}, [gl.shadowMap]);
return null;
}
export { BakeShadows };