版本:Unity 6 (6000.0)
语言英语
  • C#

GUIContent.tooltip

提出修改建议

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们不能接受所有提交,但我们确实会阅读来自我们用户的每个建议变更并会在适用的情况下进行更新。

关闭

提交失败

由于某种原因,无法提交您建议的变更。请在几分钟后 重试。并且感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

public string tooltip;

说明

此元素的提示。

与该内容关联的提示。读取 GUItooltip 以获取用户当前光标所在的 GUI 元素的提示。

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); } }