解决Unity3D提示‘Newtonsoft‘could not be found

原因:Newtonsoft是一个C#中使用Json来进行数据的交互的程序集。

1.与Unity自带的插件版本有关系,不能识别到包中的Newtonsoft。

2.未导入Newtonsoft.dll程序集

//提醒你的代码路径/ error CS0246: The type or namespace name 'Newtonsoft' could not be found (are you missing a using directive or an assembly reference?)

解决方案1:

出现这个提示是插件管理器中的Version Control . 版本出现问题。

笔者亲测:1.15.4-1.15.9 就没有问题,一旦更新到1.15.12以上就会出现错误

解决Unity3D提示‘Newtonsoft‘could not be found_第1张图片

解决方案:更新插件管理器中的Version Control .到1.15.12 以下

解决Unity3D提示‘Newtonsoft‘could not be found_第2张图片

你可能感兴趣的:(Unity3D,BUG解决,Unity与c#,unity)