예제 #1
0
 public override OutputMap[] Outputs(IGraphConnections graph, Metadata instance) => new[]
 {
     graph.Connect(ref Output, ref instance.Output)
 };
예제 #2
0
 public override InputMap[] Inputs(IGraphConnections graph, Metadata instance) => new[]
 {
     graph.Connect(ref ValueA, ref instance.ValueA),
     graph.Connect(ref ValueB, ref instance.ValueB)
 };
예제 #3
0
 public override OutputMap[] Outputs(IGraphConnections connections) => new[]
 {
     connections.Connect(ref Node.Output, ref Output),
 };
예제 #4
0
 public override InputMap[] Inputs(IGraphConnections connections) => new[]
 {
     connections.Connect(ref Node.Value, ref Value),
 };
예제 #5
0
 public override InputMap[] Inputs(IGraphConnections graph) => new[]
 {
     graph.Connect(ref Node.Repetitions, ref Repetitions),
 };
예제 #6
0
 public override InputMap[] Inputs(IGraphConnections connections) => new[]
 {
     connections.Connect(ref Node.Character, ref Character),
 };