cocos-JS开发笔记集合
发布时间:2020-12-14 17:18:14 所属栏目:百科 来源:网络整理
导读://需要延时1.9s一下才执行reshuffleGame,发现用scheduleOnce不行,使用下面解决方案 //this.scheduleOnce(this.reshuffleGame(),1.9); //reshuffleGame(); var self = this ; this .runAction(cc.Sequence.create( cc.DelayTime.create(1.9),cc.CallFunc.cr
//需要延时1.9s一下才执行reshuffleGame,发现用scheduleOnce不行,使用下面解决方案 //this.scheduleOnce(this.reshuffleGame(),1.9); //reshuffleGame(); var self = this; this.runAction(cc.Sequence.create( cc.DelayTime.create(1.9),cc.CallFunc.create(function () { self.reshuffleGame(); }))); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |