Hi all! I’m using this thread to announce ponyfont a modern bitmap font module for Corona SDK.
https://github.com/ponywolf/ponyfont
There are many partial attempts on this forum (and on GitHub, BitBucket, etc.) to build a BMF importer, but most rely on deprecated functionality and require additional code to integrate. The goal of ponyfont is to have a replacement for display.newText() with similar arguments and rendering.
Of course the benefit is direct control over glyph in a display group, which makes doing text animation a breeze… So this…
-- Demo looping through each letter for i = 1, bmpText.numChildren do transition.from ( bmpText[i], { delay = 1000 + (i\*25), time = 250, xScale = 2, yScale = 2, alpha = 0, transition = easing.outBounce }) end
…gets you this…