Assets\jiaoben3\jindutiao.cs(36,2): error CS1513: } expected
时间: 2023-07-23 21:15:25 浏览: 131
这个错误提示是因为在 jindutiao.cs 文件的第 36 行缺少了一个右括号 "}",导致编译器无法识别代码块的结束位置。你需要在第 36 行添加一个右括号以解决这个问题。例如:
```
// some code here
}
```
相关问题
Assets\jiaoben3\jindutiao.cs(21,2): error CS1513: } expected
这个错误提示是因为在 jindutiao.cs 文件的第 21 行缺少了一个右括号 "}",导致编译器无法识别代码块的结束位置。你需要在第 21 行添加一个右括号以解决这个问题。例如:
```
// some code here
}
```
NullReferenceException: Object reference not set to an instance of an object jindutiao.Update () (at Assets/jiaoben3/jindutiao.cs:16)
这个错误提示是因为在 jindutiao.cs 文件的 Update() 方法中,尝试访问一个空引用对象的成员变量或成员方法,导致程序抛出了 NullReferenceException 异常。具体来说,这里可能是因为 load1 或 load2 或 t 未被正确初始化导致的。你需要在脚本中找到这些变量的初始化代码,检查是否正确初始化了这些变量。例如,可以在 Start() 方法中添加以下代码来初始化这些变量:
```
void Start() {
load1 = GetComponent<Image>();
load2 = GetComponent<Slider>();
t = GetComponent<Text>();
}
```
这样就可以确保这些变量被正确初始化了,避免出现 NullReferenceException 异常。
阅读全文