cocos2d-x 体积优化

前端之家收集整理的这篇文章主要介绍了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_cocostudio_module(L);// comment this line to remove cocostudio 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

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