[]怎样获取父类?
//我在这个类里添加一个页面TipsView为子类
...
...
var tipView = new TipsView();
this.addChild(tipView);
function enterNextScene() {
}
...
...
//这个是TipsView.js类,我想在这个类里调用上面那个父类里enterNextScene的方法,如何获取到上面那个父类呢?
var TipsView = (function (_super){
function TipsView(params) {
TipsView.super(this);
this.sure.on(Laya.Event.MOUSE_UP,this,onSure);
function onSure(params) {
}
}
Laya.class(TipsView,"TipsView",TipsViewUI);
return TipsView;
})();
...
...
var tipView = new TipsView();
this.addChild(tipView);
function enterNextScene() {
}
...
...
//这个是TipsView.js类,我想在这个类里调用上面那个父类里enterNextScene的方法,如何获取到上面那个父类呢?
var TipsView = (function (_super){
function TipsView(params) {
TipsView.super(this);
this.sure.on(Laya.Event.MOUSE_UP,this,onSure);
function onSure(params) {
}
}
Laya.class(TipsView,"TipsView",TipsViewUI);
return TipsView;
})();
没有找到相关结果
已邀请:
要回复问题请先登录
3 个回复
15818760256
赞同来自:
Monica - 知识达人
赞同来自:
15818760256
赞同来自: