Assets\Script\Chouka.cs(15,9): error CS0103: The name 'lnvokeRepeating' does not exist in the current context
时间: 2024-04-05 21:32:39 浏览: 76
cs31415.github.io:个人站点
这个错误是因为你在代码中调用了一个不存在的方法 `lnvokeRepeating`。正确的方法名是 `InvokeRepeating`,注意其中的字母大小写。
你需要检查一下代码中是否有拼写错误或者大小写错误,以及是否正确地引入了相关的命名空间(如果需要的话)。如果问题还没有解决,你可以提供相关代码的片段,以便更好地帮助你找到问题所在。
阅读全文