unity類似QQ功能的腳本編寫
來源:
|
責(zé)任編輯:她。 |
發(fā)布時間: 2017-08-28 14:48 | 瀏覽量:
本節(jié)匯寶盆為大家?guī)淼氖牵簎nity類似QQ功能的腳本編寫
unity類似QQ功能的unity腳本
移到最頂部時會自動收起。。
工具欄寬度根據(jù)程序自動拉升寬度。。。只限在上下移動。。自己的應(yīng)用程序里要用到這個。。所以花時間做了個。。
var windowRect = Rect (0, 20, 200 , 50);
function OnGUI () {
windowRect = GUI.Window (0,Rect(0,windowRect.y,Screen.width,windowRect.height), DoMyWindow, "My Window");
if (windowRect.y< -10){
windowRect = GUI.Window (0,Rect(0,-40,Screen.width,windowRect.height), DoMyWindow, "My Window");
}
}
function DoMyWindow (windowID : int) {
if(GUI.Button (Rect (10,20,100,20), "button1")){
};
if(GUI.Button (Rect (120,20,100,20), "button2")){
};
if(GUI.Button (Rect (230,20,100,20), "button3")){
};
GUI.DragWindow ();
}
function Update() {
}
-
分享到:
相關(guān)文章
網(wǎng)友評論
全部評論:0條
推薦
熱門