I am working on a Cocos2d iPad game that includes a magical book. From time-to-time, new text appears in the book.
I would like to animate the new text in a way that looks like ink magically appearing on the page of the book. I have tried the following (but am not happy with the quality):
- Outside the game: create the text as an image, create a second image of the text and blur it. During runtime: fade from the blurred text image to the non-blurred text image
- Runtime: create random ink dots in the region of the text, scale the ink dots until the obscure much of the area, and then fade them to out leaving the text behind.
My question is this: What is a creative way to have text look like it is magically appearing on an old page of a magic book using Cocos2d on the iPad?
What about creating a particle system (choose one from the examples coming with cocos and customize) which will move on your book and new text characters will appear under it ?
Or it can be a big system to cover all the text line. So it will appear (particles) then text will be created under it and particles emitter will stop, so the current particles will disappear beautiful.