csharp
public record class SubGraphExtractionWhat lifting some nodes out into a sub-graph would do.
No guide page documents this yet — the page shows what the code says about itself.
Fields and properties (6)
public NodeGraphModel GraphThe new graph, with its interface and its entry and exit nodes.
public ImmutableArray<NodeId> ExtractedWhich nodes moved, in the order the graph held them.
public ImmutableArray<GraphEdge> IncomingThe edges that arrived from outside, which became the graph's inputs.
public ImmutableArray<GraphEdge> OutgoingThe edges that left for outside, which became its outputs.
public IReadOnlyDictionary<PortRef, string> InputsWhich interface input each external output now feeds.
public IReadOnlyDictionary<PortRef, string> OutputsWhich interface output each internal output now leaves by.
Methods (1)
Used by (5)
- CommandTestsVixen.Editor.NodeGraph.Tests
- ExtractSubGraphCommandVixen.Editor.NodeGraph
- NodeGraphViewVixen.Editor.NodeGraph
- SubGraphTestsVixen.Editor.NodeGraph.Tests
- SubGraphsVixen.Editor.NodeGraph