I was visiting this website with cool animated apps. I was wondering how’s the easiest way of building a app like those. I almost bet it uses some kind of OpenGL ES.
Is it a good case of cocos2d usage?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think that many of these apps are possible to create using the Core Animation Cocoa framework. I couldn’t say for sure if those apps use that technology, but it seems like 2d animation would be sufficient. The coin animation seems like a perfect fit.
You’d need to create the artwork for any animation frames that aren’t the result of rotating or moving an image. Core Animation does a great job animating the movement of 2d images. The movement of bubbles in liquid could probably be done easiest by cycling between some artwork animating them.
That said, it’s a trade-off between creating lots of artwork and writing some OpenGL or Quartz code to simulate the appearance of liquid (or whatever).
Check out this guide to Core Animation to see the possibilities.