beginMove(act:Function) {
Laya.timer.frameLoop(1, this, () => {
//do someting...
if (true) {
Laya.timer.clearAll(this);
act(true);
}
});
}
调用
beginMove(()=>{
console.log("被回调");
});