UniRxで、TextMeshProのDropdownを実装しようとしてますが、
UnityUIComponentExtensions.csへusing TMPro;を追加したところ以下のように赤下線が引かれimportできませんでした。
エラーは以下の通りでした。
Using directive is unnessary.
The type or namespace name 'TMPro' could not found
通常のcsにusing TMPro;を記述したところ問題なく、記述でき、スクリプトも実行できました。
例えばSmapleScene.cs
using UnityEngine; using UnityEngine.UI; using UniRx; using TMPro; public class SampleScene : MonoBehaviour { void Start() { GameObject.Find("Text (TMP)").GetComponent<TextMeshProUGUI>().text = "test"; } }
なにか特殊な対応する必要があるのでしょうか?
unityバージョン2020.3.0f1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。