I’m a beginner with Unity.
I imported a UnityPackage distributed on GitHub into my scene.
There were no errors when I imported the UnityPackage distributed on GitHub.
After making a small edit to the code in that file, I exported it from Asset/Export Package with the name “Test.unitypackage”.
I didn’t add any new files, just lightly edited the existing code.
When I tried to import the UnityPackage I edited and exported into a new project scene, over 400 errors appeared.
Most of the errors seem to be related to namespaces, like the following:
The type or namespace name 'xxxxx' could not be found (are you missing a using directive or an assembly reference?)
In such a case, what steps might I have gotten wrong?
3