Interface IContext<TSelf>
A common base interface shared by all simulation callback contexts which allows them to share a common API through the use of extension methods. User code should use CommonContext for local implementation of helper methods rather than being written against this interface.
Namespace: Unity.DataFlowGraph.Detail
Syntax
public interface IContext<TSelf>
Type Parameters
Name | Description |
---|---|
TSelf |
Properties
Handle
A handle to the node being operated on.
Declaration
NodeHandle Handle { get; }
Property Value
Type | Description |
---|---|
NodeHandle |
Set
The NodeSetAPI associated with this context.
Declaration
NodeSetAPI Set { get; }
Property Value
Type | Description |
---|---|
NodeSetAPI |