版本: Unity 6 (6000.0)
语言英语
  • C#

EditorTool.toolbarIcon

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交的内容,但我们会阅读用户提出的每个建议,并在适用的情况下进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请 <a>稍后再试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

public GUIContent toolbarIcon;

描述

此自定义编辑器工具的图标和工具提示。如果未实现此函数,则工具栏将显示目标类型的检查器图标。如果未定义目标类型,则工具栏将显示工具模式图标。

此属性访问频率很高,因此在 MonoBehaviour.OnEnable 中加载图标的 GUIContent

using UnityEditor.EditorTools;
using UnityEngine;

public class ToolbarIconSample : MonoBehaviour {}

[EditorTool("Toolbar Icon Sample Tool", typeof(ToolbarIconSample))]
class ToolbarIconSampleTool : EditorTool
{
    GUIContent m_Icon;

    public override GUIContent toolbarIcon => m_Icon;

    private void OnEnable()
    {
        m_Icon = new GUIContent("Text Icon", "Toolbar Icon Sample Tool tooltip.");
    }

    private void OnDisable()
    {
        m_Icon = null;
    }
}