Hello, I have some classes defined in .js files, and I use them from c# code.
Before I updated Unity to version 2018.3.0f2 everything works well because .js files were put into Standard Assets folder, which is compiled earlier than rest of scripts, and class can be use in that scripts after compile.
( like described here: unity game engine - How to call C# function from UnityScript - Stack Overflow )
However, after update, it looks like it doesn’t work anymore. Why it doesn’t work? What I have to do to make it work again? I tried copy .js files to Plugins and Editor folder, still doesn’t work…