Last active
December 4, 2020 02:26
-
-
Save kamyker/9aea531fa3ee5083da869001df5a0ddf to your computer and use it in GitHub Desktop.
Unity Find References In Project with Quick Search
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Unity.QuickSearch; | |
using UnityEditor; | |
public static class FindReferencesInProjectEditor | |
{ | |
static ISearchView searchView; | |
[MenuItem( "Assets/Find References In Project", priority = 29 )] | |
static void FindReferencesInProject() | |
{ | |
var searchText = $"ref:\"{Selection.activeObject.name}\""; | |
var context = new SearchContext(SearchService.Providers, searchText); | |
if ( searchView == null || searchView.context == null ) | |
searchView = SearchService.ShowWindow( context ); | |
searchView.SetSearchText( searchText ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Adds Find References In Project:

Make sure to check Dependencies in settings:

Thanks to https://github.com/jschmidt42 for the help :)