Unity shader stories - Rendering a quad wireframe

Опубликовано: 14 Ноябрь 2024
на канале: Firnox
5,574
107

Improving our existing wireframe shader, to only render quads. This removes many of the diagonal lines from the mesh you may not want.

We use the technique of longest edge removal from the triangles. This removes the majority of cross diagonals in a mesh that is predominantly made of quads. It isn't perfect, but if this is the effect you require it's much closer than that which renders every triangle.

The full source code is available on GitHub: https://github.com/Firnox/ShaderStori...

Other videos in this series:

1. Wireframe rendering of a mesh -    • Unity shader stories - Wireframe rend...  
2. Quad wireframe rendering - [this video]
3. Wireframe on top of model render -    • Unity shader stories - Rendering the ...  

Chapters:
0:00 Introduction
0:45 Removing triangles from quads
1:27 Where it can go wrong
2:30 Implementation details
3:05 Code changes
5:03 Finished result