Where is the best place to learn java scripting for unity
3 Answers
3You probably should have included a comment noting the distinction between "Java" and "Javascript". They're totally different and that is important.
– flaviusxviiThis question has been asked many times. Search.
Here is one that is popular:
http://answers.unity3d.com/questions/4897/how-can-i-start-learning-unity-fast-list-of-tutorials
http://www.unityscript.com/lessons1/basics.php This is a great intro to a)scripting, b)how unity works behind the scenes. Very accessible.
Java scripting wont help you at all for unity. Javascript on the other hand, will. Javascript and Java are two totally different languages. Unity actually doesn't even use Javascript, it uses a language similar to it called UnityScript, but thats a fine detail many people miss. Now, having said all that, if you want to build more then toy apps, you really want to learn C#. Its much more suitable for full application scale development then UnityScript.
– Jeff-Kesselman