unity报错ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index System.Collections.Generic.List`1[T].get_Item (System.Int32 index) (at <9aad1b3a47484d63ba2b3985692d80e9>:0) H
时间: 2024-04-28 16:22:03 浏览: 373
Best HTTP v3.11.0.unitypackage unity 插件
4星 · 用户满意度95%
这个错误通常是因为你访问了一个集合中不存在的索引,也就是说你要么访问了一个负数索引,或者是一个大于等于集合大小的索引。你需要确保你的代码中访问的索引是合法的,也就是在集合的范围内。你可以检查一下集合的大小,并且确保它不为空。如果你还是无法解决这个问题,你可以把出错的代码或者堆栈信息贴出来,这样我就可以更好地帮助你了解问题的原因。
阅读全文