完全独学でUnityを始めたのですが、こちらのプログラムで必ずNullReferenceExceptionというエラーが出てしまいます。
using UnityEngine;
using System.Collections;
using UnityEngine.UI;//UI オブジェクトを扱う時は必須
public class QuizMgr : MonoBehaviour
{
//アタッチしたオブジェクトが呼ばれた時に実行される。
void Start()
{
QuestionLabelSet();
AnswerLabelSet();
}
private void QuestionLabelSet()
{
//特定の名前のオブジェクトを検索してアクセス
Text qLabel = GameObject.Find("Quiz/QLabel").GetComponentInChildren<Text>();
//データをセットすることで、既存情報を上書きできる
qLabel.text = "ランサーズ君は何歳?";
}
}
出来る限りの事はしたのですがどうしても解決出来ないので質問させていただきます。
参考にしたサイトはこちらです
https://engineer.blog.lancers.jp/ios/ugui_quiz_unity/
0 コメント