1

图片描述

    public static string SearchField(string value, params GUILayoutOption[] options)
    {
        MethodInfo info = typeof(EditorGUILayout).GetMethod("ToolbarSearchField", BindingFlags.NonPublic | BindingFlags.Static, null, new System.Type[] { typeof(string), typeof(GUILayoutOption[]) }, null);
        if (info != null)
        {
            value = (string)info.Invoke(null, new object[] { value, options });
        }
        return value;
    }

迷途吧
145 声望25 粉丝

看见好文章就翻译一下,发现一些细节就分享一下,也许没什么技术,只希望能被需要的人搜到。


引用和评论

0 条评论