Ejemplo n.º 1
0
 /// <summary>
 /// Context menu to add a new node to the Route.
 /// </summary>
 public void AddNewNode()
 {
     CreateRouteSetEditor.CreateNewNode(this);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Context menu to add a new node to the Route.
 /// </summary>
 public void AddNewNode(int index)
 {
     CreateRouteSetEditor.CreateNewNode(this, index);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Context menu to add a new node to the Route.
 /// </summary>
 public void AddNewNode()
 {
     CreateRouteSetEditor.CreateNewNode(transform.GetComponentInParent <Route>());
 }