http://www.fairygui.com/guide/sdk/egret.html
https://www.jianshu.com/p/dd847647b7e4 JS压缩
https://q.qq.com/wiki/develop/game/frame/ability/subpackages.html 分包加载
https://blog.youkuaiyun.com/snxxxx/article/details/81509184 分包加载
uglifyjs main.js -m -o main.min.js 压缩主文件
https://q.qq.com/wiki/develop/game/API/ qq官方API
http://fontstore.baidu.com/static/editor/index.html //百度字体编辑器
//批量修改文件后缀名的modify.bat
::ren .gfx .png
::ren .json .bin
@echo off
for /f "delims=" %%a in ('dir /a-d /s /b') do (
if "%%~xa" == ".gfx" ren "%%~fsa" "%%~na.png"
if "%%~xa" == ".json" ren "%%~fsa" "%%~na.bin"
)