Version: 2017.4
public string tooltip ;

説明

ツールチップ

この GUIContent に関連したツールチップです。ユーザーが 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); } }