public string tooltip ;

Descripción

El tooltip de este elemento.

El tooltip asociado con este contenido. Lea GUItooltip para obtener el tooltip del elemento gui donde el usuario está actualmente sobre.

using UnityEngine;

public class ExampleScript : MonoBehaviour { void OnGUI() { GUI.Button(new Rect(0, 0, 100, 20), new GUIContent("A Button", "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); } }