Version: 2022.1
言語: 日本語
public static string GetTransformPath (Transform tform);

パラメーター

tform Transform to extract name from.

戻り値

string Returns a transform name using "/" as hierarchy separator.

説明

Format the pretty name of a Transform component by appending all the parent hierarchy names.

static string FetchLabel(SearchItem item, SearchContext context)
{
    if (item.label != null)
        return item.label;

    var go = ObjectFromItem(item);
    if (!go)
        return item.id;

    var transformPath = SearchUtils.GetTransformPath(go.transform);
    var components = go.GetComponents<Component>();
    if (components.Length > 2 && components[1] && components[components.Length - 1])
        item.label = $"{transformPath} ({components[1].GetType().Name}..{components[components.Length - 1].GetType().Name})";
    else if (components.Length > 1 && components[1])
        item.label = $"{transformPath} ({components[1].GetType().Name})";
    else
        item.label = $"{transformPath} ({item.id})";

    return item.label;
}
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961