Instancing and vertex shaders: Grass with wind in React Three Fiber

  • React Three Fiber
  • Three.js

Below is a React Three Fiber setup that creates thousands of waving image planes on the screen. Each plane is instanced for high performance and is individually displaced in the vertex shader by sampling a noise texture—so the top of each plane gently “waves” as if blowing in a breeze. The fragment shader then samples a user-provided image texture with transparency, so each plane renders the same image but with a unique swaying offset. By combining instancing with custom shaders, this approach efficiently handles a large number of animated objects while still allowing for complex, per-vertex transformations.