About
Animating text textures for my web apps using React Three Fiber. This project explores dynamic 3D text textures that can either auto-animate or respond to the cursor position, controlling the intensity of the animation in real-time.
3D texture animation exploration using React Three Fiber.
Animating text textures for my web apps using React Three Fiber. This project explores dynamic 3D text textures that can either auto-animate or respond to the cursor position, controlling the intensity of the animation in real-time.
Plane, for easier creation of textured planesTHREE.TextureLoader, ensuring optimal aspect ratio scaling on different viewports.const waveX1 = 0.5 * Math.sin(vertex.x + time * 2);
const waveY1 = 0.25 * Math.sin(vertex.y * 2.5 + time * 2);
vertex.z = targetIntensityRef.current * (waveX1 + waveY1);