我这样设置的代码:
Laya.stage.on(Laya.Event.MOUSE_UP, this, this.onMouse);
Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouse);
Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouse);
在frameLoop中,我让Laya.stage.pos(movex,movey)后,就再不会调用this.onMouse事件了,请问如何解决?