Version: 2021.3
LanguageEnglish
  • C#

SearchContextAttribute.instantiableProviders

Suggest a change

Success!

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.

Close

Submission failed

For 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.

Close

Cancel

public Type[] instantiableProviders;

Description

Search provider concrete types that will be instantiated and assigned to the Object Picker search context.

[SearchContext("my search", new[] { typeof(MyTextureProvider) })] public Texture2D mySpecialTexture2D;

class MyTextureProvider : SearchProvider
{
    static string ProviderId = "myTexture";

    public MyTextureProvider()
        : base(ProviderId)
    {
        fetchItems = (context, items, provider) => SearchItems(context, provider);
        fetchLabel = (item, context) =>
        {
            var assetPath = AssetDatabase.GUIDToAssetPath((string)item.data);
            return GetNameFromPath(assetPath);
        };
        fetchThumbnail = (item, context) =>
        {
            var obj = toObject(item, typeof(Texture2D));
            return AssetPreview.GetAssetPreview(obj);
        };
        toObject = (item, type) =>
        {
            var assetPath = AssetDatabase.GUIDToAssetPath((string)item.data);
            return AssetDatabase.LoadAssetAtPath(assetPath, type);
        };
    }

    static IEnumerator SearchItems(SearchContext context, SearchProvider provider)
    {
        foreach (var texture2DGuid in GetMyTextures())
        {
            yield return provider.CreateItem(context, texture2DGuid, texture2DGuid.GetHashCode(), null, null, null, texture2DGuid);
        }
    }

    static IEnumerable<string> GetMyTextures()
    {
        return AssetDatabase.FindAssets("t:texture2d");
    }

    static string GetNameFromPath(string path)
    {
        var lastSep = path.LastIndexOf('/');
        if (lastSep == -1)
            return path;

        return path.Substring(lastSep + 1);
    }
}