[]这个写法是什么意思,能否解释一下,谢谢
function BackGround() {
//定义背景1
this.bg1 = null;
//定义背景2
this.bg2 = null;
//初始化父类
BackGround.__super.call(this);
this.init();
}
//注册类 BackGround
Laya.class(BackGround, "BackGround", laya.display.Sprite);
问题:
1.Laya.class(BackGround, "BackGround", laya.display.Sprite); 这种写法是什么意思,
Laya.class(BackGround, "BackGround", laya.display.Sprite) 是传给了那个方法
2.BackGround.__super __super是什么属性?
//定义背景1
this.bg1 = null;
//定义背景2
this.bg2 = null;
//初始化父类
BackGround.__super.call(this);
this.init();
}
//注册类 BackGround
Laya.class(BackGround, "BackGround", laya.display.Sprite);
问题:
1.Laya.class(BackGround, "BackGround", laya.display.Sprite); 这种写法是什么意思,
Laya.class(BackGround, "BackGround", laya.display.Sprite) 是传给了那个方法
2.BackGround.__super __super是什么属性?
没有找到相关结果
已邀请:
要回复问题请先登录
2 个回复
Laya_XS
赞同来自:
问题2、super是指向到父类的意思;
tanglijiong
赞同来自: