0
votes
0answers
15 views
Is anyone have memory leaks using cocos2d?
I am detecin a memory leak particularily in the startAnimation method in the director object.
- (void) startAnimation
{
if ( gettimeofday( &lastUpdate, NULL) != 0 ) {
…
0
votes
1answer
16 views
make a timer count down and score displayed on the screen in Cocos2D
Hi everyone
How can I apply a timer count down in Cocos2D and the score counter that both will be display on the screen?
I am still new to this
Please help me out
Thanks a lot …
0
votes
1answer
37 views
significance of ‘z’?
hello,
i started out learning cocos2d and came across these lines of code:
-(id)init {
self=[super init];
if(self!=nil) {
Sprite *bg = [Sprite spriteWithFile:@"menu.png"];
[b …
0
votes
0answers
22 views
iphone application crashes on OS3.1 when i dont use a text field
I am using landscape mode in my application. It crashes in OS3.1 but run perfect in case of simulator and OS3.0. I am using a UITextField at starting of my application, if I use th …
0
votes
4answers
55 views
Cocos2d - Shooting Game Problem
Hi,everyone, I made a shooting game just like 1942(classic shooting game),but here's the question, FPS drops to 5~6 when the fighter shoot out a straight line of bullet,about 7~8 b …
0
votes
1answer
26 views
AtlasSpriteManager animation
Hi all,
I am using AtlasSpriteManager and AltasSprite to create frame by fram animation with 1 one file. I wanna write something that at first show a simple picture, without any an …
1
vote
1answer
24 views
cocos2d sprite animation
Hi all,
How can I change an image position in cocos2d like background-position in css? By position I don't mean the position of background like ccp(200,150), I mean for example, I …
0
votes
0answers
9 views
Preloading multiple background music
I am trying to preload a bunch of background music files. Basically i am calling preloadBackgroundMusic several times. This breaks on me when i try it with SimpleAudioEngine :
[[S …
0
votes
1answer
40 views
cocos multi touch game.
I am developing some games using multi touch for iPhone (cocos). Could anyone teach me how to start, from very scratch beginning. I am not sure where to start or any resources that …
-1
votes
1answer
35 views
game is slow first time and then becomes fast
i have new prob when i load application on device first time game is slow and second time when i start new game without closing application it is faster. now its nothing to do with …
1
vote
0answers
43 views
background moves together with image
I have 4 images and a background. I already about to animate the image to move accordingly. But the back ground is not moving. I am not sure how to make the background move accordi …
0
votes
2answers
87 views
NSMutable array invalid after objectAtIndex
@implementation Level
@synthesize doors, rooms;
- (id) init
{
self = [super init];
if (self != nil) {
rooms = [[NSMutableArray alloc] init];
doors = [[NSMutableAr …
0
votes
0answers
11 views
Dragging a particularly large sprite up and down like scroll effect in COCOS2D
I am really stuck on this. My application is in landscape view and on one screen i wanted my instructions image to be scrollable. I have added this image as a sprite. First i tried …
0
votes
1answer
31 views
How to implement moving platforms with Cocos2d, TMXTiledMaps and Chipmunk
I'm making slow but steady progress with a Cocos2d game, but I'm stuck creating moving platforms.
The main character needs physics and collision detection, and is therefore a chi …
-1
votes
1answer
37 views
Problem using chipmunk
I made a game that using a character that can moving left or right by touching the screen, above the character, it is a apple, what i need is the apple will fall down, the characte …
