I’m releasing my font manager / bitmap strings library (MIT license, so it’s free to use). There are two links for it ; one is a demo, which shows some of the features in a q & d fashion, the other is the library itself. It can be used for text effects in menus and instructions, scores in games and so on.
Demo https://github.com/autismuk/Font-Demo
Library https://github.com/autismuk/Font-Manager
It can do this sort of stuff - this is an example showing three fonts produced using Glyph Designer very easily. You can’t tell from the picture, but the bottom one of the three is animating a nice sine curve.
To reproduce this line you just need this line of code (curve is one of the built in modifiers - you can write your own if you want to do something really weird …)
display.newBitmapText("This is text",160,240,"font1",40):setModifier("curve"):animate()
All feedback welcome.