Frame-based Animator Generator
I finished off writing a basic animation generator, given a very specific folder layout:
This layout (and most of the code in this this gist) is simply set up the way that it is because it fits my current process. None of this is meant to be universal or overly generic, but it's a good starting point if you're looking for something similar.
The tool can generate animator controllers + clips, or just clips from a folder or selection.
I left in fairly basic Debug.Log()
messages tracking (useful to track what has been done, rather than actual progress).
And it does it's best to organize the resulting Animator Controller - in my game the art is along 4 cardinal directions, so it places the output in columns of 4 States for the sake of organization.
Obviously there's still a lot of work involved (timing individual frames, setting up transitions + parameters, etc), but this saves some time - especially if the default method of dragging batches of sprites onto a animation clip doesn't quite cover your bases.
- Previous: beholdin
- Next: Autotile Pipeline