其他分享
首页 > 其他分享> > [Cocos Creator] 定时器

[Cocos Creator] 定时器

作者:互联网


        /** n豪秒后 只执行一次 */
        setTimeout(() => {
            
        }, 1*1000);


        let interval:number = 5; // 以秒为单位的时间间隔
        let repeat = 3; // 重复次数
        let delay = 10; // 开始延时 : 延迟10秒执行该循环。

         /** 每隔n秒 执行一次 ,循环多次 ---- 例如:某个任务需要在10秒后开始执行,每5秒执行一次回调,重复3次。*/
        this.schedule(function() {
            
        }, interval,repeat,delay);



         /** 隔n秒 定时执行一次 ---- temp:某个任务需要在两秒后执行一次回调函数,之后就停止。*/
         this.scheduleOnce(function() {
            
        }, delay);

标签:function,10,Cocos,定时器,Creator,delay,repeat,let,执行
来源: https://blog.csdn.net/lihui061119/article/details/123135920