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 is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
Assets/Editor Default Resources/IconsIf 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
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 is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
Assets/Editor Default Resources/IconsIf 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
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 is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
Assets/Editor Default Resources/IconsIf 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
The text associated with the GUIContent.text.
The tooltip to display when the cursor hovers over the icon.
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 is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
Assets/Editor Default Resources/IconsIf 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
The text associated with the GUIContent.text.
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 is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
Assets/Editor Default Resources/IconsIf 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
The text associated with the GUIContent.text.
The tooltip to display when the cursor hovers over the icon.
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 is fetched using the icon name. Only the name of the icon, without the .png extension is needed.
Assets/Editor Default Resources/IconsIf 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
Returns
Type | Description |
|---|---|
| GUIContent |