UnassignedReferenceException: The variable nowdisp of DispJPGFiles has not been assigned.
You probably need to assign the nowdisp variable of the DispJPGFiles script in the inspector.
OVRCameraRig上のDispJPGFiles.scからCanvasNB上のTextMaxNのTextを変更しようとした。
Scriptばかり気にして、
1 2 3 |
public GameObject maxdisp; maxdisp = GameObject.Find("CanvasNB/TextMaxN"); maxdisp.GetComponent<Text>().text = info.Length.ToString(); |
という風に手順はちゃんと踏んでるつもりでいたからエラー・メッセージをろくに読まずに、何だろ何だろと思っていた。
「inspectorで設定してね。」って言ってるのに無視してた。
なので以下のようにしたらエラーは出なくなった。
だが、同じようにsObject、tObject、bObjextもあって、これらはInspector上では設定してないのにエラーが出ない。
どういう違いなのかよくわからない。