Skip to content

Register Nodes

Each signal or render node within your assembly needs to be registered with the following attribute.

// Example with signal node. 
[assembly: RegisterNode<ExampleSignalNode>]

// Same procedure with render node. 
[assembly: RegisterNode<ExampleRenderNode>]

However, you can choose where you would like to place these assembly attributes. You can either place them above the actual node classes, or bundle them together into a single C# file.

Info

Only nodes that have been registered with this assembly attribute will be considered and loaded by Audectra. Every other node will be ignored.