Description
A music visualizer
Notes
A re-upload, this patch has been refactored for efficiency. I've learned a lot from this one. The bottleneck in the previous versions was that I had two Blur nodes at the end (for the two triangles on the left/right). Blur is a pretty intensive operation. To fix this, we make a single triangle and mirror it (with Mirror), and then pipe it into an Output node before the single Blur. Piping it into an Output node prevents the Blur from repeating all previous operations.