Paste animated vector graphics into native iOS app

I'm looking for a way to display animated vector graphics in an iOS app.

The artist draws a character in a vector, and then imports it into Flash and animates it. Why exactly a vector, but not sprites? Because the character has a lot of material and animation. And if I use frame animation, I need to display all the animation options for all the appearance options. Skeletal sprite astrology looks bad. Now I will try a solution from Adobe - Flash Toolkit for CreateJS. I put the result in a UIWebView. Everything seems to work, I can replace the vector elements with others and start the animation for each element separately (which I need). But there is a performance issue, so I cannot use more complex vector graphics. And the solution looks like not native.

Maybe there is another solution?

+4
source share
1 answer

If you don't mind using Starling (Starling's homepage ), I found some interesting information about what might be useful here: flash-movieclip-converter-preserves-display-list-hierarchy

There are also several GIT repos that you can check out, which might be useful: https://github.com/zenrobin/FlashMovieClipConverter https://github.com/philippecapouillez/FlashMovieClipConverter

Hope this helps.

0
source

Source: https://habr.com/ru/post/1438896/


All Articles