I recently using CocosBuilder to build the interface of a game. I can load ccbi files in main thread without any problems.But when I load it in the background thread. I got an empty layer/node with black background. So my question is how to load them properly in background thread?
How to load ccbi files with CCBReader in background thread?
767 views Asked by iamro00 At
1
I find a solution.I can load the ccbi files and run the loading animation at the same time. Don't know if is right, but it works for me. Here's the code. The solution is found in the Cocos2d Multithread Test Example.