[]封装类的时候 怎么在类中表示自身?

class BackGround extends Laya.Sprite{

constructor() {
super();
new init();
function init() {

var bg1 = new Laya.Sprite();
var bg2 = new Laya.Sprite();

//背景图

// box.loadImage("../bin/background.png");
// Laya.stage.addChild(box);

bg1.loadImage("../bin/background.png");
this.addChild(bg1);

bg2.loadImage("../bin/background.png");
bg2.pos(0,-852);
this.addChild(bg2);

用this.addchild老是出错
已邀请:

cuixueying

赞同来自:

是的,用this表示当前作用域

要回复问题请先

商务合作
商务合作