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.csdn.net/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"
)
本文探讨了游戏开发中资源管理的重要策略,包括使用FairyGUI进行UI设计,JS压缩以减少文件大小,以及分包加载技术来提高游戏加载效率。文章还提到了百度字体编辑器的使用,以及如何通过批处理脚本来修改文件后缀名,适用于游戏资源的批量处理。
4452

被折叠的 条评论
为什么被折叠?



