Version: 2017.3
public string tooltip ;

描述

该元素的工具提示。

与该内容关联的工具提示。读取 GUItooltip 来获取用户当前悬停的 GUI 元素的工具提示。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { GUI.Button(new Rect(0, 0, 100, 20), new GUIContent("A Button", "This is the tooltip")); GUI.Label(new Rect(0, 40, 100, 40), GUI.tooltip); } }