您好,登錄后才能下訂單哦!
這篇文章主要介紹“Unity組件Toogle和DropDown怎么使用”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Unity組件Toogle和DropDown怎么使用”文章能幫助大家解決問題。
變形 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關閉"); } }); tg2.onValueChanged.AddListener(isOn => { if (isOn) { Debug.Log("tg2打開"); } else { Debug.Log("tg2關閉"); } }); } // 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; List<string> tempNames; void Awake() { dropdown = GetComponent<Dropdown>(); tempNames = new List<string>(); dropdown.onValueChanged.AddListener(ExecuteItem); } private void ExecuteItem(int arg0) { Debug.Log("執行邏輯:"+ arg0); } void Start() { AddNames(); UpdateDropdownView(tempNames); } /// <summary> /// 刷數據 /// </summary> /// <param name="showNames"></param> private void UpdateDropdownView(List<string> showNames) { 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); } }
關于“Unity組件Toogle和DropDown怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。