Esempio n. 1
0
 public CConnectionPoint1(CNode node, CConnectionPointType type, GUIStyle style, Action <CConnectionPoint1> OnClickConnectionPoint)
 {
     this.node  = node;
     this.type  = type;
     this.style = style;
     this.OnClickConnectionPoint = OnClickConnectionPoint;
     rect = new Rect(0, 0, 10f, 20f);
 }
Esempio n. 2
0
 public void Rebuild(CNode node, CConnectionPointType type, Action <CConnectionPoint1> OnClickConnectionPoint)
 {
     this.node = node;
     this.type = type;
     this.OnClickConnectionPoint = OnClickConnectionPoint;
 }