Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


toolbarIcon

The icon and tooltip for this custom editor tool. If this function is not implemented, the toolbar displays the Inspector icon for the target type. If no target type is defined, the toolbar displays the Tool Mode icon.
Read time 1 minuteLast updated 9 days ago

Definition

public virtual GUIContent toolbarIcon { get; }

Remarks

This property is accessed frequently, so load the icon's GUIContent in MonoBehaviour.OnEnable().

Examples

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; }}