While using the uRTS toolkit I encountered some errors. After searching the internet for hours I still cant figure out how to solve it.
The errors are -
The type or namespace ‘networking’ does not exist in the namespace ‘unityengine’. Are you missing an Assembly reference?
The type or namespace ‘scene management’ does not exist in the namespace ‘unityengine’. Are you missing an Assembly reference?
Please help me to solve them.
Namespaces are case sensitive. AND looks like an extra space typo
‘scene management’ → UnityEngine.SceneManagement (nospace, Capitals)
(Unity - Scripting API: SceneManager)
‘networking’ → UnityEngine.Networking (Capitalize)
https://docs.unity3d.com/ScriptReference/Networking.NetworkManager.html
You will see on those docs pages I linked to, at the very top, it shows what namespace the class can be found in. Your ‘using’ statements must match these exactly.