Ejemplo n.º 1
0
 void DrawLines()
 {
     foreach (var node in Roots.Root[_id].DeadEnds)
     {
         if (node.dirs[_direction])
         {
             var duoLine = DuoLine.Create(_panel.bookmark.icon, node.transform, false, true, _id);
             _lines.Add(duoLine);
         }
     }
 }
Ejemplo n.º 2
0
 void CreateLine()
 {
     _line = DuoLine.Create(_panel.bookmark.icon, Roots.Root[_id].block.transform, false, true, _id);
 }