Unity Détruisez tous les objets avec TAG

GameObject[] taggedObjects = GameObject.FindGameObjectsWithTag("Tag");   
foreach (GameObject object in taggedObjects) {
	Destroy(object);
}
Obnoxious Opossum