il2cpp 文件不可用
il2cpp file not available
我在 Unity 编辑器中开发了一个 iOS 游戏,在 Unity 编辑器中 is also playable
我在 iOS (Xcode) 中构建和运行 游戏.构建成功,但游戏无法正常运行。这就是为什么我决定调试我的函数然后在 Xcode (NOT IN UNITY
) 中出现以下错误的原因:
NullReferenceException: A null value
was found where an object instance was
required. at
BallScript.MobileControl () [0x00000]
in :0
(Filename:
currently not available on il2cpp
Line: -1)
导致这些错误的原因是什么?我该如何应对?
这意味着 BallScript
class 中的 MobileControl
方法中的代码试图在某处使用 null
值。我建议调试代码以更好地了解正在发生的事情。您需要使用 Unity 2018.2 或更高版本才能在 iOS 上调试 C# 代码。您可以在此处查看有关如何操作的说明:https://docs.unity3d.com/Manual/ManagedCodeDebugging.html
请注意 (Filename: currently not available on il2cpp Line: -1)
是良性的。与本例具体错误无关,可以忽略。
我在 Unity 编辑器中开发了一个 iOS 游戏,在 Unity 编辑器中 is also playable
我在 iOS (Xcode) 中构建和运行 游戏.构建成功,但游戏无法正常运行。这就是为什么我决定调试我的函数然后在 Xcode (NOT IN UNITY
) 中出现以下错误的原因:
NullReferenceException: A null value was found where an object instance was required. at BallScript.MobileControl () [0x00000] in :0
(Filename: currently not available on il2cpp Line: -1)
导致这些错误的原因是什么?我该如何应对?
这意味着 BallScript
class 中的 MobileControl
方法中的代码试图在某处使用 null
值。我建议调试代码以更好地了解正在发生的事情。您需要使用 Unity 2018.2 或更高版本才能在 iOS 上调试 C# 代码。您可以在此处查看有关如何操作的说明:https://docs.unity3d.com/Manual/ManagedCodeDebugging.html
请注意 (Filename: currently not available on il2cpp Line: -1)
是良性的。与本例具体错误无关,可以忽略。