I am developing an interactive 2-book for children using cocos2D framework. It would be great to implement page curl in the e-book. Thanks in advance.
I am developing an interactive 2-book for children using cocos2D framework. It would be
Share
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.
If you open your cocos2d-ios Xcode project, you will find a “TransitionsTest” target that will show you all default transitions in cocos2d; among them several page flips.
AFAIK, curl is not available by default; you could have a look at the “Leaves” framework for an example of the logics behind page curl animation (Leaves does it for CoreAnimation, with page reflection and everything) and extend a cocos2d transition for your specific case.
Hope it helps…