Register Layers
Each layer within your assembly needs to be registered with the following attribute.
[assembly: RegisterLayer<ExampleEffectLayer>]
However, you can choose where you would like to place these assembly attributes. You can either place them above the actual layer classes, or bundle them together into a single C# file.
Info
Only layers that have been registered with this assembly attribute will be considered and loaded by Audectra. Every other layer will be ignored.