我正在阅读有关Unity JS的文章.文章展示了一个统一js类的例子.
class Person{ var name; var career; } //Create objects of type Person var john = Person(); john.name = "John Smith"; john.career = "doctor"; Debug.Log(john.name + " is a " + john.career);
看起来Unity JS实际上支持class关键字.它如何通过JavaScript支持类?他们使用的是死ES4规格还是修改过的ES3或5?
解决方法
查看有关UnityScript和JavaScript之间差异的文章:
http://wiki.unity3d.com/index.php?title=UnityScript_versus_JavaScript