Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying in the beginning of the game to animate 41 bricks to fall into a grid that is 6x7 from the top of the screen but so far I've just been able to make the bricks to fall down at the same position. If I remove the animation part then all bricks appear on the grid. The bricks should fall down with a millisecond or two after the previous brick to create the effect of steps.

I know that the position is the issue but I don't know how to fix it.

-(void)AnimateBricksFalling{

self.allowTouch = NO;
for(int i =0; i< GRID_WIDTH ; i++)
{
    for(int j =0; j< GRID_HEIGHT ; j++)
    {

        Bricks * d = grid[i][j];

        d.mySprite.position = ccp(168,1000); //the position is the issue, making all the bricks to fall down to the same position
        CCMoveTo *move = [CCMoveTo actionWithDuration:0.5 position:ccp(168,91)]; //the position is the issue, making all the bricks to fall down to the same position
        [d.mySprite runAction: move];

    }
}

}

share|improve this question

1 Answer

up vote 0 down vote accepted

you can use a Delay for each brick, something like this

 [d.mySprite runAction: [d.mySprite runAction: [Sequence actions:
[DelayTime actionWithDuration: waitTime],
[CCMoveTo actionWithDuration:0.5 position:ccp(168,91)],
nil]]];

And then create an randon time and set it to the waitTime variable. Then each call will move one brick, then wait, and do it again.

Hope it helps!

share|improve this answer
thanks! it worked! :D – peteriphonenoob Oct 7 '11 at 4:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.