HISE Docs

chain

container.chain

A node that processes its children serially.

The chain is the most simple container - it serially processes all its children starting at the top.

If the chain is bypassed, the children will not be processed (this sounds obvious, but be aware that the bypass state of the other containers might vary).

UI Layout

The default layout of a chain is from top to bottom (this indicates serial processing). However if you have a big DSP network, it might make sense to swap the layout and arrange the child nodes horizontally. Let's take a look at this patch:

As you can see, it takes up a big chunk of screen estate with lots of whitespace. If you want to increase the visual density of the network, you can flip the layout of the first (orange chain) by clicking on the vertical flip button in the menu bar:

If you do so, the network will look like this:

This will not affect the actual processing at all, but now the elements are much more closer together so that it fits all on the screen without having to scroll around.