How do I select all the items in a prefab?
I have over 2700 items in a prefab that need a component added to them. I just need to select all of them and add a component but I rather not take forever and do it individually. Is their some special key or thing that I can use to select everything in the prefab?
Comment
you can hold alt when click on the folding arrow in the hierarchy to unfold the whole structure. you can then hold shift after selecting the root when selecting the last item to select all at once.
you can also write an editor script and use foreach (Transform t in transform)
to iterate all transforms and AddComponent by code