W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
通常情況下,一個(gè)游戲界面可以由很多窗口組成,在每個(gè)窗口中可以添加不同的、任意的功能組件,這讓窗口的使用豐富了游戲界面和內(nèi)容。
使用 Window 控件
為當(dāng)前界面添加窗口,具體方法如下:
public static function Window(id:int, clientRect:Rect, func:GUI.WindowFunction,text:string):Rect;
public static function Window(id:int, clientRect:Rect, func:GUI.WindowFunction,image:Texture):Rect;
public static function Window(id:int, clientRect:Rect, func:GUI.WindowFunction,content:GUIContent):Rect;
public static function Window(id:int, clientRect:Rect, func:GUI.WindowFunction,text:string, style:GUIStyle):Rect;
public static function Window(id:int, clientRect:Rect, func:GUI.WindowFunction,image:Texture, style:GUIStyle):Rect;
public static function Window(id:int, clientRect:Rect, func:GUI.WindowFunction,title:GUIContent, style:GUIStyle):Rect;
注:
id
為窗口的標(biāo)號(hào),用以標(biāo)識(shí)窗口。
clientRect
為窗口顯示區(qū)域。
func
是回調(diào)方法的名稱。
text
為窗口標(biāo)題。
參數(shù)列表
參數(shù) | 描述 |
---|---|
Style |
設(shè)置用于窗口的可選樣式。如果遺漏了,則使用當(dāng)前GUISkin 的窗口樣式。 |
clientRect |
設(shè)置可以拖動(dòng)的窗口的一部分,這部分將被剪切到實(shí)際的窗口中。 |
text |
設(shè)置文本在窗口內(nèi)呈現(xiàn)。 |
content |
設(shè)置在窗口內(nèi)渲染的圖形。 |
title |
設(shè)置文本在窗口標(biāo)題欄顯示。 |
id |
設(shè)置窗口的ID號(hào)(可以是任何值, 只要它是唯一的)。 |
func |
設(shè)置顯示窗口內(nèi)容的腳本函數(shù)。 |
image |
設(shè)置在窗口中渲染的圖像。 |
style |
設(shè)置窗口的樣式信息。 |
使用案例
window
,保存場(chǎng)景。Assets
→ Create
→ JavaScript
命令,創(chuàng)建一個(gè)新的腳本文件。 var windowRect0:Rect=Rect(20, 20, 120, 50);
var windowRect1:Rect=Rect(20, 100, 120, 50);
function OnGUI(){
GUI.color=Color.red;
windowRect0=GUI.Window(0, windowRect0, DoMyWindow, "Red Window");
GUI.color=Color.green;
windowRect1=GUI.Window(1, windowRect1, DoMyWindow, "Green Window");
}
function DoMyWindow(windowID:int){
if(GUI.Button(Rect(10, 20, 100, 20), "Hello World"))
print("Got a click in window with color"+GUI.color);
GUI.DragWindow(Rect(0, 0, 10000, 10000));
}
Ctrl+S
鍵保存腳本。Main Camera
上,使腳本和攝像機(jī)產(chǎn)生關(guān)聯(lián)。
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)系方式:
更多建議: