Link to Same node

Hi,

I am using GoGeneralNode with three ports. 1 left port and 2 right ports.
Can i link from my right port to left port on the same node?
Currently i am not able to do that. If it is possible please let me know.
Thanks,
Manoj

Change the GoPort.IsValidSelfNode property to true in GoGeneralNodePort.

The easiest way to do that is to override MakePort in your GoGeneralNode derived class.
public override GoGeneralNodePort MakePort(bool input) {
GoGeneralNodePort p = base.MakePort(input);
p.IsValidSelfNode = true;
return p;
}
And set your links to be AvoidsNodes = true and Orthogonal = true to get "around the outside of the node" routing.

Hi Jake,

Thank you very much for your quick reply.
Regards,
Manoj