OnGUI ToolTip 控件

2020-07-13 14:00 更新

Unity 3D ToolTip 控件主要用于顯示提示信息。

當(dāng)鼠標(biāo)移至指定位置時(shí),會(huì)顯示相應(yīng)的提示信息,在使用時(shí)需要和 GUI.Content 配合。

具體使用方法如下:

public static var tooltip:string

使用案例

  1. 創(chuàng)建項(xiàng)目,將其命名為 GUI.Tooltip,保存場(chǎng)景。

  1. 執(zhí)行 AssetsCreateJavaScript 命令,創(chuàng)建一個(gè)新的腳本文件。

  1. 在 Project 視圖中打開(kāi)腳本編輯器,輸入下列語(yǔ)句:

    function OnGUI(){
        GUI.Box(Rect(5, 35, 210, 175), GUIContent("Box", "this box has a tooltip"));
        GUI.Button(Rect(30, 85, 100, 20), "No tooltip here");
        GUI.Button(Rect(30, 120, 100, 20),
        GUIContent("I have a tooltip", "The button overrides the box"));
        GUI.Label(Rect(10, 40, 100, 40), GUI.tooltip);
    }

  1. Ctrl+S 鍵保存腳本。

  1. 在 Project 視圖中選擇腳本,將其連接到 Main Camera 上。

  1. 進(jìn)行測(cè)試,效果如下圖所示。

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)