Implement a context node
Before you start, read Introduction to context nodes to understand the core concepts.
To implement a context node, define a class that inherits from the ContextNode
base class:
[Serializable]
public class MyContextNode : ContextNode
{
}
Context nodes inherit all features available in its parent Node
class. Review Implement a node to learn how to customize your node with node options, ports, and orientation settings.