Version: 2022.1
언어: 한국어

FetchPreviewOptions

enumeration

매뉴얼로 전환

설명

Options for the search provider on how the preview should be fetched.

These options are used by the SearchProvider.fetchPreview functor.

static Texture2D FetchPreview(SearchItem item, SearchContext context, Vector2 size, FetchPreviewOptions options)
{
    var obj = ObjectFromItem(item);
    if (obj == null)
        return item.thumbnail;

    var assetPath = SearchUtils.GetHierarchyAssetPath(obj, true);
    if (string.IsNullOrEmpty(assetPath))
        return item.thumbnail;

    if (options.HasFlag(FetchPreviewOptions.Large))
    {
        if (AssetPreview.GetAssetPreview(obj) is Texture2D tex)
            return tex;
    }
    return GetAssetPreviewFromPath(assetPath, size, options);
}

변수

NoneNo options are defined.
Preview2DIndicates that the search provider should generate a 2D preview.
Preview3DIndicates that the search provider should generate a 3D preview.
NormalIndicates that the preview size should be around 128x128.
LargeIndicates that the preview resolution should be higher than 256x256.
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961