Unity Learning Record: Error importing standard package

Record the problems encountered in learning Unity

This article is based on Unity2019.3.2f1 version

Error importing unity standard package Standard Assets

The standard package in the store seems to have been updated, from the previous 20173 to the 20184 version. The error in importing the standard package is actually a very common small error, and the solution is also very simple. You can find it by searching the Internet. Write it down here to remind yourself.

2017 version

The previous import of the 20173 version of the standard package will report an error. It seems that the new version of Unity does not have a library such as GUITexture.
Change the GUITexture of ForcedReset.cs to UnityEngine.UI.Image and the GUITexture of
SimpleActivatorMenu.cs to UnityEngine.UI.Text.
The general error will disappear at this time, but I still encounter an error. At this time, I only need to restart Unity. .

2018 version

2018
This version has one less bug than the previous 2017 version. You only need to modify the GUITexture of SimpleActivatorMenu.cs to UnityEngine.UI.Text.
modify
Then, after waiting for the progress bar to complete, the error will disappear, but there are more than 20 warnings that have not disappeared. This actually does not matter. Restart Unity and the warning will also disappear.

Guess you like

Origin blog.csdn.net/weixin_46149121/article/details/105701032