Beispiel #1
0
        public void Set(NodesLayout nodesLayout, Node node)
        {
            layout      = nodesLayout;
            nodePreview = node;
            Width       = node.UIWidth;
            Height      = node.UIHeight;

            set = true;
        }
Beispiel #2
0
 public void Init(NodesLayout inLayout, bool OutputPorts)
 {
     nodesLayout = inLayout;
     righty      = OutputPorts;
 }
Beispiel #3
0
 public Overlay(NodesLayout inLayout)
 {
     Layout = inLayout;
 }
Beispiel #4
0
 public NodePreview(NodesLayout inlayout, Node innodePreview) : base()
 {
     Set(inlayout, innodePreview);
 }