Hi. I’m making some spheres with a custom shader. It works fine.
This is the Planet component:
import * as THREE from 'three';
import {shaderMaterial} from '@react-three/drei';
import {useFrame, extend} from '@react-three/fiber';
import {useRef, forwardRef} from 'react';
import planetVertexShader from './shaders/planet/vertex.glsl';
import planetFragmentShader from './shaders/planet/fragment.glsl';
const PlanetMaterial = shaderMaterial(
{
uTime: 0,
uColorStart: new THREE.Color('#ffffff'),
uColorEnd: new THREE.Color('#000000'),
},
planetVertexShader,
planetFragmentShader,
);
extend({PlanetMaterial});
export const Planet = forwardRef(function Planeta(props, ref) {
const planetMaterial = useRef();
useFrame((state, delta) => {
planetMaterial.current.uTime += delta * 0.7;
});
return (
<mesh {...props} ref={ref}>
<sphereGeometry args={[1, 16, 8]} />
<planetMaterial
ref={planetMaterial}
vertexShader={planetVertexShader}
fragmentShader={planetFragmentShader}
uniforms={{
uTime: {value: 0},
uColorStart: {value: new THREE.Color('#ff7400')},
uColorEnd: {value: new THREE.Color('#451439')},
}}
/>
</mesh>
);
});
And this is the scene:
export default function Experience() {
const sunRef = useRef();
const planet1Ref = useRef();
const [test, setTest] = useState(0);
useEffect(() => {
setTest('test'); // <--------INCLUDING THIS LINE THE SHADER STOPS
}, []);
return (
<>
<Sun ref={sunRef} />
<Planet scale={0.5} ref={planet1Ref} />
</>
);
}
The problem is that when I use the useState
hook in Experience, the shader animation stops.
That is, as soon as I include setTest('test')
the shader animation stops.
Why can that happen?