InvalidOperationException: The following game object is invoking the DontDestroyOnLoad method: WXSDKManagerHandler. Notice that DontDestroyOnLoad can only be used in play mode and, as such, cannot be part of an editor script.
时间: 2024-03-12 12:49:42 浏览: 165
InvalidSignature-The signature is invalid(解决方案).md
这个错误通常是由于在编辑器模式下调用了DontDestroyOnLoad方法,而该方法只能在运行时使用。你可以通过在代码中添加条件语句来避免这个错误,例如:
```
#if UNITY_EDITOR
// 在编辑器模式下不执行DontDestroyOnLoad方法
#else
// 在运行时执行DontDestroyOnLoad方法
DontDestroyOnLoad(gameObject);
#endif
```
这样就可以在编辑器模式下避免调用DontDestroyOnLoad方法,从而防止这个错误的出现。
阅读全文