// Use this for initialization
    void Start()
    {
        waypointStreetManagerV2 previous = transform.GetComponentInChildren <waypointStreetManagerV2> ();

        foreach (waypointStreetManagerV2 wp in transform.GetComponentsInChildren <waypointStreetManagerV2>())
        {
            if (wp == previous)
            {
                wp.NextDirectionB = null;
            }
            else
            {
                previous.NextDirectionA = wp;
                wp.NextDirectionB       = previous;
                previous = wp;
            }
        }
    }
예제 #2
0
 public void Start()
 {
     parent = transform.GetComponentInParent <waypointStreetManagerV2> ();
 }