Reputation: 127
I'm going to start scripting in Unity3D pretty soon for game development using UnityScript (since I am a beginner). If I had experience in JavaScript (which I don't), will I find UnityScript any different? If so, how much of a difference is there between these two scripting languages?
Upvotes: 4
Views: 2107
Reputation: 64477
This is summed up in the unityscript tag wiki here: https://stackoverflow.com/tags/unityscript/info
Main differences:
this
is always the class pointer (aka self
)Specifically this link tells you all about the differences between JS and US: http://wiki.unity3d.com/index.php/UnityScript_versus_JavaScript
Upvotes: 6