CSLightStudio icon indicating copy to clipboard operation
CSLightStudio copied to clipboard

类型名字冲突问题。

Open GraphicGame opened this issue 11 years ago • 0 comments

假定原生代码中有个类,类名字叫:ThisIsNativeClass,并且已注册在脚本系统中使用了。 那么如下脚本无法编译通过: public class TestTypeNameConfliction { //这一行无法编译通过,这个函数名和已注册的类名相同。 public void ThisIsNativeClass() {

 }

}

GraphicGame avatar Sep 09 '14 03:09 GraphicGame