NullReferenceException: Object reference not set to an instance of an object jindutiao.Update () (at Assets/jiaoben3/jindutiao.cs:16)
时间: 2023-06-30 22:20:39 浏览: 166
未将对象引用设置到对象的实例 (System.NullReferenceException)
这个错误提示是因为在 jindutiao.cs 文件的 Update() 方法中,尝试访问一个空引用对象的成员变量或成员方法,导致程序抛出了 NullReferenceException 异常。具体来说,这里可能是因为 load1 或 load2 或 t 未被正确初始化导致的。你需要在脚本中找到这些变量的初始化代码,检查是否正确初始化了这些变量。例如,可以在 Start() 方法中添加以下代码来初始化这些变量:
```
void Start() {
load1 = GetComponent<Image>();
load2 = GetComponent<Slider>();
t = GetComponent<Text>();
}
```
这样就可以确保这些变量被正确初始化了,避免出现 NullReferenceException 异常。
阅读全文