Real-Time Fur Rendering in Unity

This is my own implementation of real-time fur in Unity using shells generated in a geometry shader, and a compute shader to handle the movement.

The compute shader calculates a direction for each vertex “strand” and writes it to a structured buffer that is shared with the geometry shader.

compute_shader

Leave a comment