Hello. So I’m trying to put my scripts and custom inspector editor scripts in two external DLLs and I’m facing a problem on my Editor DLL.
First of, I’m using UnityVS with Visual Studio 2013 Ultimate.
I added a reference to “C:\Program Files (x86)\Unity\Editor\Data\Managed\UnityEditor.dll” and it successfully shows me IntelliSense. But when I try to compile the build, it will complain not finding the assembly UnityEditor. Even referencing the same DLL like the UnityProject (inside the Library folder) results in that problem, as it’s just a copy of installed UnityEditor.dll.
I even tried to open this project in a separate Visual Studio and build it, got the same result.
I’ve heard, placing the resulting DLL in the Editor folder will make the custom inspectors available, so I really wish this would compile.