A question that is often asked is, "how do I rotate 360 degree?" so here's a small tip on that.
Rotation in Spine always takes the shortest route. That means if you have the following two keys on a bone:
Key1: 0°
Key2: 300°
The bone will rotate counter-clockwise since the distance from 0 to 300 is only 60.
Loading Image
Now if I want to rotate something 360 degrees the best way to do this is by adding multiple keys.
For a clockwise rotation I would set the following keys:
Key1: 0°
Key2: 120°
Key3: 240°
Key4: 0°
Loading Image
For counter-clockwise rotation it would look like this
Key1: 0°
Key2: 240°
Key3: 120°
Key4: 0°
Loading Image
I hope this will help some of you.