這篇文章主要介紹“Unity組件Toogle和DropDown怎么使用”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“Unity組件Toogle和DropDown怎么使用”文章能幫助大家解決問(wèn)題。
創(chuàng)新互聯(lián)公司專注于企業(yè)全網(wǎng)營(yíng)銷推廣、網(wǎng)站重做改版、神木網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5開發(fā)、成都做商城網(wǎng)站、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為神木等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
變形 group
public class RToogleGroup01 : MonoBehaviour { public Toggle tg1; public Toggle tg2; // Use this for initialization void Start () { tg1.onValueChanged.AddListener(isOn => { if (isOn) { Debug.Log("tg1打開"); } else { Debug.Log("tg1關(guān)閉"); } }); tg2.onValueChanged.AddListener(isOn => { if (isOn) { Debug.Log("tg2打開"); } else { Debug.Log("tg2關(guān)閉"); } }); } // Update is called once per frame void Update () { }
public class RToogleGroup02 : MonoBehaviour { public Toggle tg1; public Toggle tg2; public Toggle tg3; public Transform []bgs; // Use this for initialization void Start() { tg1.onValueChanged.AddListener(isOn => { ShowBG(0); }); tg2.onValueChanged.AddListener(isOn => { ShowBG(1); }); tg3.onValueChanged.AddListener(isOn => { ShowBG(2); }); } private void ShowBG(int index) { for (int i = 0; i < bgs.Length; i++) { if (i == index) { bgs[i].gameObject.SetActive(true); } else { bgs[i].gameObject.SetActive(false); } } }
public class RDropdown : MonoBehaviour { Dropdown dropdown; ListtempNames; void Awake() { dropdown = GetComponent (); tempNames = new List (); dropdown.onValueChanged.AddListener(ExecuteItem); } private void ExecuteItem(int arg0) { Debug.Log("執(zhí)行邏輯:"+ arg0); } void Start() { AddNames(); UpdateDropdownView(tempNames); } /// /// 刷數(shù)據(jù) /// /// private void UpdateDropdownView(ListshowNames) { dropdown.options.Clear(); Dropdown.OptionData tempData; for (int i = 0; i < showNames.Count; i++) { tempData = new Dropdown.OptionData(); tempData.text = showNames[i]; dropdown.options.Add(tempData); } dropdown.captionText.text = showNames[0]; } private void AddNames() { string s1 = "0"; string s2 = "1"; string s3 = "2"; string s4 = "3"; string s5 = "4"; tempNames.Add(s1); tempNames.Add(s2); tempNames.Add(s3); tempNames.Add(s4); tempNames.Add(s5); } }
關(guān)于“Unity組件Toogle和DropDown怎么使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。