We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e46ae4b commit 5798798Copy full SHA for 5798798
1 file changed
src/components/WebGLBackground.tsx
@@ -56,8 +56,8 @@ export function WebGLBackground() {
56
const animate = () => {
57
requestAnimationFrame(animate);
58
59
- particlesMesh.rotation.y += 0.001;
60
- particlesMesh.rotation.x += 0.001;
+ particlesMesh.rotation.y += 0.0003;
+ particlesMesh.rotation.x += 0.0003;
61
62
// Smooth camera movement based on mouse position
63
camera.position.x += (mouseX * 0.5 - camera.position.x) * 0.05;
0 commit comments