Unity3D Editor: How can I find all usages of a given asset?

user2018103 picture user2018103 · Oct 21, 2016 · Viewed 15.2k times · Source

The very useful feauture "Find usages" exists in Visual Studio and Resharper, but I can't find the same in Unity3D Editor. I see only "Select dependencies" in Unity3d, but I need the opposite one. Does it exist?

Answer

Programmer picture Programmer · Oct 21, 2016

From the Editor, go to the Project Tab, select the given Asset, right-click on it and then click Find References In Scene. It will show you every GameObject that the given Asset is attached to in the Hierarchy View if the given Asset is a script. If it is an image, audio file, or a prefab, it will show you which GameObject is using that Asset in the Hierarchy View.

enter image description here