cocos-JS开发笔记集合

前端之家收集整理的这篇文章主要介绍了cocos-JS开发笔记集合前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

//需要延时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();

})));

原文链接:https://www.f2er.com/cocos2dx/338876.html

猜你在找的Cocos2d-x相关文章