As my collection of scripts grows in my (first) Unity (iPhone) project, I'm forced to wonder:
1) is there any way in the UI to see what objects the scripts are attached to? I know it goes the other way, but I want something like: highlight script and see what objects use it. (Yes, I know I can do a print(name), but that's not what I'm after. I really almost expected to be able to control-click a script and see this information.)
2) is there a way to find a function (OK: any text) across all scripts? (ie: which script holds function doThis(); ?
With my luck, I may have missed where all this is covered. If so, please point me at the proper docs.
As to 2) - As Wolfram mentioned, I would use an external tool to search in multiple files. For Windows, I can recommend Notepad++. Since Unity2.6 it can be connected with Microsoft Visual Studio, too.
I have been wanting this (a “reverse dependency” finder; a “What uses this asset?” function) also, and I haven’t found any other solution that does exactly what I want, so I wrote this editor script to do it: unifycommunity.com
drop it in your “Editor” folder; it should add a “What objects use this?” command to your Assets menu. (I have an update coming soon that will add a progress bar to it.)