Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
ClosesearchText | Search Query. |
provider | Search provider (This search provider does not need to be active or registered). |
providerId | Unique search provider ID string (i.e. asset, scene, find, etc.) |
providerIds | List of search provider IDs. |
providers | List of search providers. |
flags | Options defining how the query is performed. |
SearchContext Returns a new SearchContext.
Creates context from a list of search provider IDs.
using UnityEditor; using UnityEditor.Search; using UnityEngine; static class Example_SearchService_CreateContext { [MenuItem("Examples/SearchService/CreateContext")] public static void Run() { using var searchContext = SearchService.CreateContext("scene", "camera"); using var results = SearchService.Request(searchContext); { foreach (var label in results.Select(r => r.GetLabel(searchContext))) Debug.Log(label); } } }