FindObjectsWithTag in list code example
Example 1: FindObjectsWithTag in list
public List peopleList = new List(); foreach(GameObject fooObj in GameObject.FindGameObjectsWithTag("people")) { peopleList.Add(fooObj); }
Example 2: FindObjectsWithTag in list
spawnPoints.AddRange(/*whatever you need to add*/);