前端之家收集整理的这篇文章主要介绍了
cocos2d-x 体积优化,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1. so
文件优化 1)在luamoduleregister.h中注释掉不需要的
代码,重新打包后即可看到
效果 int lua_module_register(lua_State* L){ register_cocosdenshion_module(L); // comment this line to remove cocosdenshion register_network_module(L); // comment this line to remove network register_cocosbuilder_module(L); // comment this line to remove cocosbuilder register_cocostu
dio_module(L);// comment this line to remove cocostu
dio register_extension_module(L); // comment this line to remove extension register_ui_moudle(L);// comment this line to remove ui register_spine_module(L); // comment this line to remove spine register_cocos3d_module(L); // comment this line to remove 3d return 1;}
原文链接:https://www.f2er.com/cocos2dx/342611.html