Reverting to prefab-state several game objects at once with stock Unity

Hey guys,
I need to revert several similar objects to their prefab at once but when I select said objects I can only revert last selected.

This issue seems to be a part of a pervasive problem with Unity whereby if several objects
are selected you cannot make changes to all of them(Say remove a component that they all share).

Any ideas would be greatly appreciated, since this issue has bugged me ever since I
started working with Unity.

Thanks!

Since you seem to be talking about editor mode strictly, the only simple way in which you can achieve something similar is by creating a different prefab for each ‘class’ of your gameobjects in the scene, and then alter the PREFAB attributes for each group, rather than the scene objects.

I don’t think there’s many occasions in which this could be an issue though. You usually don’t need to revert scene objects to prefab, unless you’re experimenting with the editor, possibly. As a matter of fact, in this case you could be better off actually going for editor scripting.

Give this a try: unifycommunity.com
I think it will do what you need.

Here is a solution:

Old question, but it’s high up on Google, so I’m linking to the solution.