前提・実現したいこと
メインカメラを、操作するオブジェクト("kurohara")に対して横方向、縦方向に追従するようプログラムします。
発生している問題・エラーメッセージ
NullReferenceException: Object reference not set to an instance of an object
該当のソースコード
public class Camera : MonoBehaviour { GameObject player; // Start is called before the first frame update void Start() { this.player = GameObject.Find("kurohara"); } // Update is called once per frame void Update() { Vector3 playerPo = this.player.transform.position; transform.position = new Vector3(playerPo.x, playerPo.y, transform.position.z); } }
試したこと
インスタンスがnull?になっていたみたいなのでとりあえずplayerのインスタンスを作成したのですが別のエラーが発生したので取り消しました。
補足情報(FW/ツールのバージョンなど)
バージョンは2019.2.9f1 Personalです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。