A lot of errors when trying to import Road Architect script files into my project.

I am very new to unity, just started a game prototype to improve myself (after months of study). And now I need some type of road builder to use before I can start to write my own C# scripts.

Today I was trying to setup Road Architect to my project, as soon as unity finished importing the files, the console returned all this errors:

Is it a problem with my Unity version (2019.4.20f1)?
Or Road Architect itself is broken?

Based on the methods which are having a problem, it looks like those scripts are extending the Editor class.

By chance do you have a script in your project called “Editor”? If so the compiler may think those scripts are intending to inherit from your script rather than Unity’s Editor class, which would cause these errors. If that’s it, rename your script to something else.

1 Like

That’s exactly the problem! Not a script but just an empty folder that remained after I tried (unsuccessfully) to follow a guide to write a editor script a couple of days ago.

As soon I deleted that folder, the console cleared and the road editor started working.
Very thanks for this very fast solution!