js -- others


1.Server

PHP

ci框架:codeignuter



2.Wait

1.显示内存

cc.TextureCache.getInstance().dumpCachedTextureInfo();


2.DragonBones快速入门指南

http://dragonbones.github.io/getting_started_cn.html

http://www.9miao.com/forum-14-1.html


3.时间转换

var seconds = 234;

var hour="0"+Math.floor(seconds/3600);
var minute="0"+Math.floor((seconds%3600)/60);
var second="0"+(seconds%60);


4.this._super()

onExit:function(){

        this._super();//释放此 layer

    }


5.游戏编程整体框架

导演、scene、layer、node


精灵、事件、动作、动画、UI、控件、结构体


工具、

优化



jsb、本地数据、网络








你可能感兴趣的:(js -- others)