W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
Unity 3D ToolTip 控件
主要用于顯示提示信息。
當(dāng)鼠標(biāo)移至指定位置時(shí),會(huì)顯示相應(yīng)的提示信息,在使用時(shí)需要和 GUI.Content
配合。
具體使用方法如下:
public static var tooltip:string
使用案例
GUI.Tooltip
,保存場(chǎng)景。Assets
→ Create
→ JavaScript
命令,創(chuàng)建一個(gè)新的腳本文件。 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);
}
Ctrl+S
鍵保存腳本。Main Camera
上。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: