「Unity/UniRx/TMPro」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==TMP_DropDownサンプル== <pre> using UnityEngine; using UnityEngine.UI; using UniRx; using TMPro; public class SampleScene : MonoBehaviour { void Start() {...」) |
(相違点なし)
|
2021年9月6日 (月) 17:34時点における版
TMP_DropDownサンプル
using UnityEngine; using UnityEngine.UI; using UniRx; using TMPro; public class SampleScene : MonoBehaviour { void Start() { Text text = GameObject.Find("Text").GetComponent<Text>(); TMP_Dropdown tmpDropdown = GameObject.Find("TmpDropdown").GetComponent<TMP_Dropdown>(); tmpDropdown.ObserveEveryValueChanged(_ => _.value) .Subscribe(index => { var value = dropdown.options[index].text; text.text = value; }); } }
UnityUIComponentExtensions.csへusing TMPro;が追加できない問題
別途、UnityUIExtensionsを作れば良い?