Kalley’s Machine Plus Cats is live on the AppStore people! We are ever so serious about that. And we are amped!
If you have no idea what we’re talking about, you must be new here. So thank you for coming! You can find out about Kalley’s Machine right here.
This is a big day for our family. And we are so excited to have shared it with all our friends who have cheered for us along the way. Thank you. It is really fun to be here with you.
RocketWagon’s mildly embarrassed to announce an interactive story based off of a drawing by our (then) 4-year-old daughter Kalley. For those of you who are tired of hearing us talk about this, the wait is almost over. iOS version should hit the App Store by May.
Ok. So this was my situation. I wanted to use Greensock’s Throwprops plugin on a big block of text on a static page to make it scroll. I got it working fine on the desktop. Export to the iPad and BAM 1fps! And that’s with the text just sitting there.
Then I tried caching it as a bitmap. It wouldn’t even display on the screen (presumably because the bitmap was too large).
Then I broke apart all the text (since Adobe Scout Heat Map shows text renders terribly slow on Air for iOS). That was just as slow as rendering the big text block.
Then, grasping at straws, I changed the text aliasing to ‘Anti-alias for Readability’. Wow. I’m up to 45fps! This was a shock since ‘Anti-alias for Animation’ was pretty much the standard go-to text render setting since the 1900’s. I had assumed that this legacy setting would be faster in any scenario. Wrong!
So, then I take my big long text block (which I have inside a movieclip) and break it up by paragraph and I get 60fps! I broke it up thinking that perhaps text is rendered by block (which seems to be the case) so that off-screen blocks don’t need to get rendered. That seems to have worked. With Throwprops working on it, I get >55fps. I can live with that.
Conclusion: If you have to have text blocks in Air for iOS, ‘Anti-alias for Readability’ is way faster than ‘Anti-alias for Animation’ which is just about unusable.