Tagged Questions
0
votes
1answer
57 views
Sprite not adding to scene?
I have a strange issue.
In my game, I add a "target to the scene in the first level like so:
//Adds the "targets" or in this case falling objects, to the scene and spawns/moves them
-(void)addTarget ...
1
vote
3answers
525 views
iPhone app crash when call self.addChild in CCSprite subclass ..?
I have downloaded the ABC open source And turning source code into cocos2d 1.01.
Now I'm having problems with the init Sprite Subclass. ( my subclass is @interface OrbSprite : CCSprite )
This Code is ...
0
votes
0answers
74 views
can I add same ccspirit object after remove it?
I have total 20 images in NSMutableArray of ccspirit objects, and I want to show them on screen moving moving upward, I add them to as [self addChild:p] as below
-(void) callMethod {
static int x = ...
0
votes
1answer
374 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 ...