Tagged Questions
0
votes
1answer
375 views
cocos2d: alloc ccsprite memory 4MB, adding as child to scenes mem=11MB
i have started with helloworld template.
added some menu and started performance tool->allocation.
result: 1.9MB
ok, so the empty scene is 2MB
now added instance variable ccsprite initialized with an ...
0
votes
1answer
418 views
Should we remove Child added by addChild method before going to next scene in cocos2d?
I am writing a small game in cocos2d. I am adding child
[ self addChild: sprite1];
Should I remove these before going to next scene by using
[self removeChild: sprite1 cleanup:YES]; ...