Exemple #1
0
        public bool TryGetOutput(FlowNode node, ValuePort output, out object value)
        {
            var f = FindFlow(node);

            if (f != null)
            {
                if (outputs != null && outputs.TryGetValue(output, out value))
                {
                    return(true);
                }
            }
            value = null;
            return(false);
        }
Exemple #2
0
 public object GetOutput(ValuePort output)
 {
     return(outputs[output]);
 }