I’m using some references in my code to some standard assets (FPSInputController, MouseLook, CharacterMotor) and everything works fine from within Unity. When I go to debug from Monodevelop, however, the IDE can’t find any javascript files. I realized this because it can find MouseLook, but not FPSInputController or CharacterMotor which are all in the same folder, but only differ by the fact that the latter two are javascript.
Unity’s monodevelop debugging page says that javascript can be used for debugging, so that’s not the problem.
Here’s the code snippet from my file:
private MouseLook playerMouseLook;
private FPSInputController fpsInputController;
private CharacterMotor characterMotor;
After a compile, on the lower two, I get “The type or namespace name ‘FPSInputController’ could not be found (are you missing a using directive or assembly reference?)”
Is there a seperate using import for js files, or something else I need to do?
Thanks in advance,
PA