Basic xml or json framework animation

Does anyone know if there is an infrastructure for dynamically loading the main animation sequences from some description file such as xml or json, or even better if there is some kind of kernel animation studio. I would need to somehow allow designers to work with animation without having to talk to programmers for every change ...

+7
source share
2 answers

In the project I was working on, we did it for sure (at least part of the description). Animation data is passed to JSON and parsed and interpreted. It displays the many basic animation features provided by Core Animation - mainly position and frame animations.

Unfortunately, we developed it patented, and it is very doubtful that the company would want to publish it as an open source.

In the end, my answer to your question is that there are no frameworks that currently support this, but it will not be too difficult to implement it yourself. Then, by creating a tool that your designers can use to create animations, JSON will be the next logical step. If the tool were not WYSIWYG, but was just a little pseudo-project tool, then it would probably be not so difficult to create.

Good luck and best wishes.

+1
source

You seem to be looking for Quartz Composer, except that QC is heavily dependent on hardware acceleration and not available on iOS. Perhaps this will change in the future.

0
source

All Articles