You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
假定原生代码中有个类,类名字叫:ThisIsNativeClass,并且已注册在脚本系统中使用了。
那么如下脚本无法编译通过:
public class TestTypeNameConfliction {
//这一行无法编译通过,这个函数名和已注册的类名相同。
public void ThisIsNativeClass() {
}
}
The text was updated successfully, but these errors were encountered:
假定原生代码中有个类,类名字叫:ThisIsNativeClass,并且已注册在脚本系统中使用了。
那么如下脚本无法编译通过:
public class TestTypeNameConfliction {
//这一行无法编译通过,这个函数名和已注册的类名相同。
public void ThisIsNativeClass() {
}
The text was updated successfully, but these errors were encountered: