Exemplo n.º 1
0
 public void UnRegisterOutput(RelayFlowOutput output)
 {
     if (sourceOutput.Contains(output))
     {
         //Debug.Log("remove new output:" + output.UID);
         sourceOutput.Remove(output);
     }
 }
Exemplo n.º 2
0
 public void RegisterOutput(RelayFlowOutput output)
 {
     if (!sourceOutput.Contains(output))
     {
         //Debug.Log("add new output:" + output.UID);
         sourceOutput.Add(output);
     }
 }