UnityEditor.SketchUpNode.SketchUpNode C# (CSharp) Method

SketchUpNode() public method

public SketchUpNode ( int id, int depth, TreeViewItem parent, string displayName, SketchUpNodeInfo info ) : System
id int
depth int
parent TreeViewItem
displayName string
info SketchUpNodeInfo
return System
        public SketchUpNode(int id, int depth, TreeViewItem parent, string displayName, SketchUpNodeInfo info) : base(id, depth, parent, displayName)
        {
            this.Info = info;
            this.children = new List<TreeViewItem>();
        }