UnassignedReferenceException: The variable zds of ta has not been assigned. You probably need to assign the zds variable of the ta script in the inspector. ta.Update () (at Assets/Scenes/日考/ta.cs:23
时间: 2023-06-18 15:07:02 浏览: 152
zds_setup_5.2.16.3_azrjy.zip_android_zds软件
这个错误表示在 `ta.cs` 脚本的第 23 行,`ta.Update()` 方法中,变量 `zds` 没有被赋值。你需要在 `ta` 脚本的 Inspector 中为 `zds` 变量赋值。
可能你在代码中声明了 `zds` 变量,但是没有在 Inspector 中为其赋值,或者在程序运行时修改了 `zds` 变量的值,但是这个修改没有被保存,导致程序无法找到正确的变量值。
你可以尝试在 `ta` 脚本的 Inspector 中找到 `zds` 变量,并为其赋值,或者在代码中初始化 `zds` 变量,确保其有一个默认的值。
阅读全文