W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
Unity 3D Toggle 控件
用于在屏幕上繪制一個(gè)開(kāi)關(guān),通過(guò)控制開(kāi)關(guān)的開(kāi)啟與閉合來(lái)執(zhí)行一些具體的指定操作。
當(dāng)用戶切換開(kāi)關(guān)狀態(tài)時(shí),Toggle 控
件的繪制函數(shù)就會(huì)根據(jù)不同的切換動(dòng)作來(lái)返回相應(yīng)的布爾值。
如選中 Toggle 控件
會(huì)返回布爾值 true
,取消選中就會(huì)返回布爾值 false
。
具體使用方法如下:
public static function Toggle(position:Rect, value:bool, text:string):bool;
public static function Toggle(position:Rect, value:bool, image:Texture):bool;
public static function Toggle(position:Rect, value:bool, content:GUIContent):bool;
public static function Toggle(position:Rect, value:bool, text:string, style:GUIStyle):bool;
public static function Toggle(position:Rect, value:bool, image:Texture, style:GUIStyle):bool;
public static function Toggle(position:Rect, value:bool, content:GUIContent,style:GUIStyle):bool;
注:
position
為控件顯示位置。
value
為默認(rèn)控件是開(kāi)還是關(guān)。
text
為控件顯示的字符內(nèi)容。
參數(shù)列表
參數(shù) | 描述 |
---|---|
position |
設(shè)置控件在屏幕上的位置及大小。 |
image |
設(shè)置控件上顯示的紋理圖片。 |
style |
設(shè)置控件使用的樣式。 |
text |
設(shè)置控件上顯示的文本。 |
content |
置控件的文本、圖片和提示小。 |
value |
設(shè)置開(kāi)關(guān)是開(kāi)啟還是關(guān)閉。 |
使用案例
GUI.Toggle
,保存場(chǎng)景。Assets
→ Create
→ JavaScript
命令,創(chuàng)建一個(gè)新的腳本文件。 var aTexture:Texture;
private var toggleTxt:boolean=false;
private var toggleImg:boolean=false;
function OnGUI(){
if(!aTexture){
Debug.LogError("Please assign a texture in the inspector.");
return;
}
toggleTxt=GUI.Toggle(Rect(10, 10, 100, 30), toggleTxt, "A Toggle text");
toggleImg=GUI.Toggle(Rect(10, 50, 50, 50), toggleImg, aTexture);
}
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)系方式:
更多建議: