I am looking for suggestions on how to simulate the writing of dynamic text using Cocos2d on iOS.
The effect should look as though the text is being written by an actual pen in real time.
My main concern is the best way to convert the text into a path that I can move the pen along.
I really don’t want to create my own paths manually. It would be great if I could somehow generate a path from a Cocos2d sprite.
I think the best way will be store the path as an array of points. It is really simple to write a small program that will load a font characters image and will be responsible for touch. In touch handler just store the touch position in an xml file. And also store the first touch point as an origin of a character. So it will be an easy way to generate paths.