query | 用于打开对象选择器窗口的初始搜索查询文本。 |
flags | 用于在各种状态下打开对象选择器的搜索视图标志。 |
providerIdsCommaSeparated | 用于创建搜索上下文的搜索提供程序 ID 列表。 |
instantiableProviders | 搜索提供程序具体类型,将实例化并分配到对象选择器搜索上下文中。 |
搜索上下文构造函数,用于向对象字段添加一些搜索上下文。
const string assetProviders = "adb;asset"; const string objectProviders = "adb,asset,scene"; const SearchViewFlags pickerMinimalUIFlags = SearchViewFlags.Packages | SearchViewFlags.IgnoreSavedSearches | SearchViewFlags.DisableSavedSearchQuery | SearchViewFlags.OpenInBuilderMode | SearchViewFlags.DisableBuilderModeToggle | SearchViewFlags.IgnoreSavedSearches; [SearchContext("cub", "adb", SearchViewFlags.ObjectPickerAdvancedUI | SearchViewFlags.ListView | SearchViewFlags.IgnoreSavedSearches)] public MonoScript myProjectScript; [SearchContext("script", "adb", SearchViewFlags.Packages | SearchViewFlags.CompactView)] public MonoScript myPackageScript; [SearchContext("t:texture", assetProviders, SearchViewFlags.ObjectPickerAdvancedUI | SearchViewFlags.GridView)] public Texture myTexture; [SearchContext("t:texture", assetProviders, SearchViewFlags.ObjectPickerAdvancedUI | SearchViewFlags.GridView)] public Texture[] myTextureArray; [SearchContext("t:texture", assetProviders, SearchViewFlags.ObjectPickerAdvancedUI | SearchViewFlags.GridView)] public List<Texture> myTextureList; [SearchContext("t:texture", "adb", SearchViewFlags.OpenInspectorPreview)] public Texture myTextureWithInspector; [SearchContext("non_mobile", SearchViewFlags.Centered)] public UnityEngine.Object myAnyObject; [SearchContext("non_mobile", SearchViewFlags.Debug)] public UnityEngine.Object myDebugObject; [SearchContext("t:mesh is:nested mesh", "asset")] public UnityEngine.Object assetMesh; [SearchContext("h: cube", "scene")] public MeshFilter sceneMesh; [SearchContext("shader:standard", assetProviders, SearchViewFlags.HideSearchBar)] public Material materialNoSearchBar; [SearchContext("select{p:t:material, @label, @size}", objectProviders, SearchViewFlags.TableView)] public Material selectMaterial; [SearchContext("Assets/Queries/textures.asset", assetProviders)] public Texture searchQueryPathTexture; [SearchContext("3c7f5dff3fb5d724688dfcecfb131b2a", assetProviders)] public Texture searchQueryGuidTexture; [SearchContext("non_mobile", SearchViewFlags.ObjectPickerAdvancedUI | SearchViewFlags.EnableSearchQuery)] public UnityEngine.Object myObjectWithSearchQueryEnabled; [SearchContext("non_mobile", SearchViewFlags.ObjectPickerAdvancedUI | SearchViewFlags.DisableInspectorPreview)] public UnityEngine.Object myObjectWithInspectorDisabled; [SearchContext("p: t:texture", "asset", SearchViewFlags.ObjectPickerAdvancedUI | SearchViewFlags.OpenInBuilderMode)] public Texture myTextureWithBuilder; [SearchContext("p: t:texture", "asset", SearchViewFlags.OpenInBuilderMode | SearchViewFlags.DisableBuilderModeToggle)] public Texture myTextureWithBuilderNoToggle; [SearchContext("p: t:texture", "asset", SearchViewFlags.OpenInTextMode | SearchViewFlags.DisableBuilderModeToggle)] public Texture myTextureNoBuilderNoToggle; [SearchContext("t:currentobject{@type, 'texture'}", "asset")] public UnityEngine.Object myObjectWithContext; [SearchContext("light")] public UnityEngine.GameObject lightSearch; [SearchContext("camera", SearchViewFlags.None)] public UnityEngine.GameObject cameraSearch; public UnityEngine.GameObject noSearchContext; #if USE_QUERY_BUILDER [SearchContext("p: t:<$list:Texture2D, [Texture2D, Material, Prefab]$>", "asset", SearchViewFlags.OpenInBuilderMode | SearchViewFlags.DisableBuilderModeToggle)] public UnityEngine.Object myObjectOfConstrainedTypes; #endif
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.