clearChilds() 공개 메소드

public clearChilds ( ) : void
리턴 void
예제 #1
0
 public void draw()
 {
     EditorGUILayout.HelpBox("Select a content for this node" +
                             "or leave it empty to finish the secuence here.", MessageType.Info);
     if (Event.current.type != EventType.layout)
     {
         if (node.Childs.Length != 0)
         {
             node.clearChilds();
         }
     }
 }