C#を用いたRPGで戦闘時のコマンド選択プログラムを書いていたのですが
"BaseEventDataが見つかりません"と出てきてしまいました。
どのようにすれば直るでしょうか?
該当ソースコード
{ using UnityEngine; using System.Collections; using System.Collections.Generic; using UnityEngine.UI; public class SelectableText : Selectable { public void OnSelect(BaseEventData eventData) { Debug.Log(${gameObject.name} が選択された"); } } }
エラーメッセージ
"error CS0246: The type or namespace name 'BaseEventData' could not be found (are you missing a using directive or an assembly reference?)"
ツールのバージョン
"Unity 2020.3.16f1"
回答1件
あなたの回答
tips
プレビュー