GUIContentConstructor

Cambiar al Manual
public GUIContent ();

Descripción

Constructor para el GUIContent en todas las formas y tamaños.

Construye un GUIContent vacío.


public GUIContent (string text);

Descripción

Construye un objeto GUIContent que contiene solo texto.

Cuando utilice el GUI, usted no necesita crear GUIContents para strings de textos simples - estas dos lineas de código son equivalentes funcionalmente:

using UnityEngine;

public class ExampleScript : MonoBehaviour { void OnGUI() { GUI.Button(new Rect(0, 0, 100, 20), "Click Me"); GUI.Button(new Rect(0, 30, 100, 20), new GUIContent("Click Me")); } }

public GUIContent (Texture image);

Descripción

Construye un objeto GUIContent que contiene una sola imagen.

using UnityEngine;

public class ExampleScript : MonoBehaviour { public Texture icon; void OnGUI() { GUI.Button(new Rect(0, 30, 100, 20), new GUIContent(icon)); } }

public GUIContent (string text, Texture image);

Descripción

Construye un objeto GUIContent que contiene ambos text y una imagen.

using UnityEngine;

public class ExampleScript : MonoBehaviour { public Texture icon; void OnGUI() { GUI.Button(new Rect(0, 30, 100, 20), new GUIContent("Click me", icon)); } }

public GUIContent (string text, string tooltip);

Descripción

Construye un GUIContent que contiene algo de text. Cuando el usuario pasa el mouse sobre él, la interfaz global GUI.tooltip se define a el tooltip.

using UnityEngine;

public class ExampleScript : MonoBehaviour { void OnGUI() { GUI.Button(new Rect(0, 0, 100, 20), new GUIContent("Click me", "This is the tooltip"));

// If the user hovers the mouse over the button, the global tooltip gets set GUI.Label(new Rect(0, 40, 100, 40), GUI.tooltip); } }

public GUIContent (Texture image, string tooltip);

Descripción

Construye un GUIContent que contenga una imagen. Cuando el usuario pasa el mouse sobre él, la interfaz global GUI.tooltip se define en tooltip.


public GUIContent (string text, Texture image, string tooltip);

Descripción

Construye un GUIContent que contenga ambos text, una image y tiene un tooltip definido. Cuando el usuario pasa el mouse sobre él, la interfaz global GUI.tooltip se establece en tooltip.


public GUIContent (GUIContent src);

Descripción

Construye un GUIContent como una copia de otro GUIContent.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961