ArgumentException: The Thing You Want To Instantiate Is Null.

原文地址:https://support.unity3d.com/hc/en-us/articles/206351293-ArgumentException-The-thing-you-want-to-instantiate-is-null-

症状

  • 我在Console窗口得到了如下所示的错误信息:
error ArgumentException: The thing that you want to instantiate is null. 
Unity Engine.Object.CheckNullArgument (System.Object arg, 
System.String.Message)

原因

引起这个错误的原因是你使用的脚本尝试实例化一个没有引用到prefab的GameObject。

解决方案

你需要通过Inspector检视面板或某个脚本,给那个你想实例化的GameObject赋予引用。

通过Inspector面板:

通过脚本:

你可能感兴趣的:(ArgumentException: The Thing You Want To Instantiate Is Null.)