当前位置: 首页 > 工具软件 > laya-snakes > 使用案例 >

Laya---回调方法

常波
2023-12-01
beginMove(act:Function) {
        Laya.timer.frameLoop(1, this, () => {
            //do someting...
            if (true) {
                Laya.timer.clearAll(this);
                act(true);
            }
        });
    }

调用

beginMove(()=>{
    console.log("被回调");
});

 

 类似资料: