“Object reference not set to an instance of an object”报错原因
对象的实例化Instantiate(X.Instance.gameObject)在引用外部脚本过程中,无法实现并报错“Object reference not set to an instance of an object”。
由于被引用脚本中,自身程序实例化public static X Instance后 ,未使用private void Awake() {instance = this;}进行单例赋值。导致在外部引用过过程中,无法运行并报错。