Im working on a 2d game where I do basically have my character standing in the middle of my iphone stage kicking balls. I build the character as a vector (with illustrator) and I want to know if is possible to animate it in after effects and export it in whatever format (I know I should use .png ) I can use in my iphone game.. The character won't have any interaction with the user and it will basically loop (kicking balls) untile the user quit the game.

thanks Luca

link|improve this question

80% accept rate
Which part of this is related to programming? – rob mayoff Feb 4 at 8:10
im asking how animation for Iphone App can be done apart from png..if that is possible! – luca Feb 4 at 8:18
feedback

1 Answer

up vote 1 down vote accepted

Yes its possible ;) but be careful your picture frames should not be a long animation , you can use UIImage to show an animation , the best format is PNG , so you can do it like this :

NSMutableArray* myImages = [[[NSMutableArray alloc] initWithCapacity:122] autorelease];
for( int i = 1; i <= 122; i++ ) {
    NSString* filename = [NSString stringWithFormat:@"animation_%d.png",i];
    UIImage* image = [UIImage imageNamed: filename];
    [myImages addObject: image];

}

myAnimation.animationImages = myImages;
[myAnimation setAnimationRepeatCount:10];
myAnimation.animationDuration = 0;
[myAnimation startAnimating];

the nubmer 122 is the animation frames .

link|improve this answer
THANKS for the snippet.I just found out I can export images sequence from after effects so this is going to be my solution – luca Feb 4 at 13:44
feedback

Your Answer

 
or
required, but never shown

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