コード例 #1
0
 public NodeConnectionPoint(NodeBase iNode, NodeConnectionPointType iType, Action <NodeConnectionPoint> OnClickConnectionPoint)
 {
     this.Node = iNode;
     this.Type = iType;
     this.OnClickConnectionPoint = OnClickConnectionPoint;
     SetStyle();
     ConnectionPointRect = new Rect(0, 0, 10f, 10f);
 }
コード例 #2
0
 public void Rebuild(NodeBase iNode, NodeConnectionPointType iType, Action <NodeConnectionPoint> OnClickConnectionPoint)
 {
     this.Node = iNode;
     this.Type = iType;
     this.OnClickConnectionPoint = OnClickConnectionPoint;
 }