Javascript and C# addons - locomotion, path

Hi guys,

Question: I’ve seen a few neat addons for unity like locomotion and path 1.0 but searching the forums/web sites I haven’t been able to determine if those addons work with both javascript and c#.

I still havent committed to either languages yet but if addons are only available for one of the two, I would probably go with that language.

I have both c# and actionscript experience, I’m comfortable with either.

Thanks,
Noss.

They’re both written in C#, but it’s irrelevant because UScript, C#, Boo get compiled to the same intermediate language. It would only be a problem if you tried to inherit or directly access the scripts, the latter I think could be done with SendMessage.

Scripts compiled in the same phase won’t support inter-language calls. Scripts compiled in a later phase can inherit from and directly access scripts compiled in an earlier phase, regardless of language. Scripts compiled in an earlier phase can’t access scripts compiled in a later phase, regardless of language. To find out more about compilation phases, check out this page:

Its still no problem as path and behave are offered as assemblies only so they are already precompiled.

Don’t know for locomotion as I didn’t use it yet.

Perfect, thanks!