AssetBundleGraph.ConnectionPointData.ConnectionPointData C# (CSharp) Method

ConnectionPointData() public method

public ConnectionPointData ( string label, NodeData parent, bool isInput ) : System
label string
parent NodeData
isInput bool
return System
        public ConnectionPointData(string label, NodeData parent, bool isInput)
        {
            this.id = Guid.NewGuid().ToString();
            this.label = label;
            this.parentId = parent.Id;
            this.isInput = isInput;
            //			this.orderPriority = pointGui.orderPriority;
            //			this.showLabel = pointGui.showLabel;
        }

Same methods

ConnectionPointData::ConnectionPointData ( object>.Dictionary dic, NodeData parent, bool isInput ) : System
ConnectionPointData::ConnectionPointData ( string id, string label, NodeData parent, bool isInput ) : System