前提・実現したいこと
unityでc#を使っている初心者です。
壁が右から左に数秒おきに流れてくるちというものを作りたいと思っています。
発生している問題・エラーメッセージ
エラーメッセージ
UnassignedReferenceException: The variable graywall of RepetitionWall has not been assigned.
You probably need to assign the graywall variable of the RepetitionWall script in the inspector.
UnityEngine.Object.Instantiate[T] (T original) (at C:/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineObject.bindings.cs:266)
RepetitionWall.Update () (at Assets/script/RepetitionWall.cs:23)
該当のソースコード
c# ソースコード ``` using System.Collections; using System.Collections.Generic; using UnityEngine; public class RepetitionWall : MonoBehaviour { public float intervalMin,intervalMax; public float instanceTime; public GameObject graywall; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { if(instanceTime <= 0) { GameObject newwall = Instantiate(graywall); newwall.transform.position = transform.position; instanceTime = Random.Range(intervalMin, intervalMax); } else { instanceTime -= Time.deltaTime; } } } ### 試したこと 何を試せばいいのかわかりませんでした。 ### 補足情報(FW/ツールのバージョンなど) ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。