Hi, I have a web based animation editor. I create the sprites manually. So for a walk cycle, I create about 10 frames. As time has gone by, the number of characters have increased. I am now wondering if it may be worth it to introduce skeletons. So, I create the 10 frames for the skeleton walk cycle and develop code to…
The first method that Toon Boom Harmony and other animation apps do to have bone animations is that you have the bones deforming the control points of the vector curves. So in the same way that you manipulated the control points of curves while designing your SVG art, the skeleton joints / bones would be transforming…
https://www.youtube.com/watch?v=b3Kcz9MPGAw Dragon's Crown is another example of a game using this technique. We had tried something similar using Spine, and it turned out to be a very long and painful process. Doing simple animations like old school flash style animations is easy though, and getting the 3d effects is real…
Hi,I want to implement the skinning on my own software, so I am looking to either modify existing opensource stuff or just write it myself. Here is something I found but the description is so so. https://blog.tensorflow.org/2020/05/pose-animator-open-source-tool-to-bring-svg-characters-to-life.html
If you're using Unity, they have a 2D skeletal system that comes with the engine. As long as the joint names are the same, the animation clip can play on multiple characters: https://www.youtube.com/watch?v=EZtpACxCTEE Not open source, but Spine is pretty good for skeletal animation that you can export to other game…