Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


TrTextContentWithIcon

Gets the GUIContent from Unity built-in resources with the given information or creates a GUIContent for a GUI element. The text and the tooltip are localized and loaded with an icon. Typically, the icon from Assets/Editor Default Resources/Icons is fetched using the icon name. Only the name of the icon, without the.png extension is needed. If a message type is specified instead of an icon or an icon name, the GUIContent.image is the icon associated with that message type.
Read time 5 minutesLast updated 4 days ago

Definition

  • Type: Method
  • Namespace: UnityEditor
  • Assembly: UnityEditor

TrTextContentWithIcon(string, Texture)

Gets the GUIContent from Unity built-in resources with the given information or creates a GUIContent for a GUI element.
The text and the tooltip are localized and loaded with an icon.
Typically, the icon from
Assets/Editor Default Resources/Icons
is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
If a message type is specified instead of an icon or an icon name, the GUIContent.image is the icon associated with that message type.
public static GUIContent TrTextContentWithIcon(string text, Texture icon)

Parameters

text

The text associated with the GUIContent.text.

The icon associated with the GUIContent.image.

Returns

Type

Description

GUIContent

TrTextContentWithIcon(string, string)

Gets the GUIContent from Unity built-in resources with the given information or creates a GUIContent for a GUI element.
The text and the tooltip are localized and loaded with an icon.
Typically, the icon from
Assets/Editor Default Resources/Icons
is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
If a message type is specified instead of an icon or an icon name, the GUIContent.image is the icon associated with that message type.
public static GUIContent TrTextContentWithIcon(string text, string iconName)

Parameters

text

The text associated with the GUIContent.text.

iconName

The name of the icon.

Returns

Type

Description

GUIContent

TrTextContentWithIcon(string, string, string)

Gets the GUIContent from Unity built-in resources with the given information or creates a GUIContent for a GUI element.
The text and the tooltip are localized and loaded with an icon.
Typically, the icon from
Assets/Editor Default Resources/Icons
is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
If a message type is specified instead of an icon or an icon name, the GUIContent.image is the icon associated with that message type.
public static GUIContent TrTextContentWithIcon(string text, string tooltip, string iconName)

Parameters

text

The text associated with the GUIContent.text.

tooltip

The tooltip to display when the cursor hovers over the icon.

iconName

The name of the icon.

Returns

Type

Description

GUIContent

TrTextContentWithIcon(string, string, Texture)

Gets the GUIContent from Unity built-in resources with the given information or creates a GUIContent for a GUI element.
The text and the tooltip are localized and loaded with an icon.
Typically, the icon from
Assets/Editor Default Resources/Icons
is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
If a message type is specified instead of an icon or an icon name, the GUIContent.image is the icon associated with that message type.
public static GUIContent TrTextContentWithIcon(string text, string tooltip, Texture icon)

Parameters

text

The text associated with the GUIContent.text.

tooltip

The tooltip to display when the cursor hovers over the icon.

The icon associated with the GUIContent.image.

Returns

Type

Description

GUIContent

TrTextContentWithIcon(string, string, MessageType)

Gets the GUIContent from Unity built-in resources with the given information or creates a GUIContent for a GUI element.
The text and the tooltip are localized and loaded with an icon.
Typically, the icon from
Assets/Editor Default Resources/Icons
is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
If a message type is specified instead of an icon or an icon name, the GUIContent.image is the icon associated with that message type.
public static GUIContent TrTextContentWithIcon(string text, string tooltip, MessageType messageType)

Parameters

text

The text associated with the GUIContent.text.

tooltip

The tooltip to display when the cursor hovers over the icon.

messageType

The type of the message to fetch the icon for.

Returns

Type

Description

GUIContent

TrTextContentWithIcon(string, MessageType)

Gets the GUIContent from Unity built-in resources with the given information or creates a GUIContent for a GUI element.
The text and the tooltip are localized and loaded with an icon.
Typically, the icon from
Assets/Editor Default Resources/Icons
is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
If a message type is specified instead of an icon or an icon name, the GUIContent.image is the icon associated with that message type.
public static GUIContent TrTextContentWithIcon(string text, MessageType messageType)

Parameters

text

The text associated with the GUIContent.text.

messageType

The type of the message to fetch the icon for.

Returns

Type

Description

GUIContent