If you need them in order then you'll have to do something to each waypoint to make it identifiable. If you don't have many waypoints the easiest thing to do would be to tag each waypoint as waypoint1, waypoint2, waypoint3 etc, then have
var waypoint: GameObject[];
Start()
{
waypoint = new GameObject[numberOfWaypoints];
waypoint[0] = GameObject.FindGameObjectWithTag("waypoint1);
waypoint[1] = GameObject.FindGameObjectWithTag("waypoint2);
waypoint[2] = GameObject.FindGameObjectWithTag("waypoint3);
}
or you could attach a script to each waypoint with a public int set to it's ID;
then have (this is in C#, not sure if it's the same for JavaScript)
GameObject[] waypoints;
GameObject[] sortedWaypoints;
Start()
{
waypoints = GameObject.FindGameObjectsWithTag("waypointTag");
sortedWaypoints = new GameObject[waypoints.Length()];
foreach (GameObject g in waypoints)
{
sortedWaypoints[g.GetComponent().ID] = g;
}
}
if you did it this way you're first waypoint must have an ID of 0, then the second waypoint has an ID of 1 and so on
↧