溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用CocosCreator怎么實(shí)現(xiàn)一個(gè)計(jì)時(shí)器功能

發(fā)布時(shí)間:2021-04-17 15:42:21 來(lái)源:億速云 閱讀:316 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

這篇文章給大家介紹使用CocosCreator怎么實(shí)現(xiàn)一個(gè)計(jì)時(shí)器功能,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

一、setTimeOut

3秒后打印abc。只執(zhí)行一次。

setTimeout(()=>{console.log("abc"); }, 3000);

刪除計(jì)時(shí)器,3秒后不會(huì)輸出abc。

let timeIndex;
timeIndex = setTimeout(()=>{console.log("abc"); }, 3000);
clearTimeout(timeIndex);

setTimeout這樣寫(xiě),test函數(shù)中輸出的this是Window對(duì)象

@ccclass
export default class Helloworld extends cc.Component {
 
    private a = 1;
 
    start() {
        setTimeout(this.test, 3000);
    }
 
    private test(){
        console.log(this.a);  //輸出undefined
        console.log(this);    //Window
    }
}

使用箭頭函數(shù)

@ccclass
export default class Helloworld extends cc.Component {
 
    private a = 1;
 
    start() {
        setTimeout(()=>{this.test()}, 3000);
    }
 
    private test(){
        console.log(this.a);  //輸出1
        console.log(this);    //Helloworld
    }
}

二、setInterval

1秒后輸出abc,重復(fù)執(zhí)行,每秒都會(huì)輸出一個(gè)abc。

setInterval(()=>{console.log("abc"); }, 1000);

刪除計(jì)時(shí)器,不會(huì)再輸出abc。

let timeIndex;
timeIndex = setInterval(()=>{console.log("abc"); }, 1000);
clearInterval(timeIndex);

三、Schedule

每個(gè)繼承cc.Component的都自帶了這個(gè)計(jì)時(shí)器

schedule(callback: Function, interval?: number, repeat?: number, delay?: number): void;

延遲3秒后,輸出abc,此后每隔1秒輸出abc,重復(fù)5次。所以最終會(huì)輸出5+1次abc?!?/p>

this.schedule(()=>{console.log("abc")},1,5,3);

刪除schedule(若要?jiǎng)h除,則不能再使用匿名函數(shù)了,得能訪問(wèn)到要?jiǎng)h除的函數(shù))

private count = 1;
 
start() {
     
    this.schedule(this.test,1,5,3);
 
    this.unschedule(this.test);
}
 
private test(){
    console.log(this.count);
}

全局的schedule

相當(dāng)于一個(gè)全局的計(jì)時(shí)器吧,在cc.director上。注意必須調(diào)用enableForTarget()來(lái)注冊(cè)id,不然會(huì)報(bào)錯(cuò)。

start() {
    let scheduler:cc.Scheduler = cc.director.getScheduler();
    scheduler.enableForTarget(this);
    //延遲3秒后,輸出1,此后每1秒輸出1,重復(fù)3次。一共輸出1+3次
    scheduler.schedule(this.test1, this, 1, 3,3, false);
    //延遲3秒后,輸出1,此后每1秒輸出1,無(wú)限重復(fù)
    scheduler.schedule(this.test2, this, 1, cc.macro.REPEAT_FOREVER,3, false);
}
 
private test1(){
    console.log("test1");
}
 
private test2(){
    console.log("test2");
}
//刪除計(jì)時(shí)器
scheduler.unschedule(this.test1, this);

關(guān)于使用CocosCreator怎么實(shí)現(xiàn)一個(gè)計(jì)時(shí)器功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI