Using:
Latest version of Spine 2.1.27
In my animations, I scale certain parts, such as the eyes vertically(set Y to .1) to make the character blink and what not. When we actually run through a browser the scales are all flipped. Meaning instead of the eye squishing vertically, it squishes horizontally.
I found the code in the JSON, and it is exporting as shown below:
"scale": [
{ "time": 2.2333, "x": 1, "y": 1 },
{ "time": 2.3666, "x": 0.1, "y": 1 },
{ "time": 2.4666, "x": 1, "y": 1 }
Notice that the code shows the x value being adjusted, NOT the y. If you look at the screenshot below, you can see that the y value is what i am setting in Spine.
It seems that when the JSON is exporting, ALL x and y values pertaining to Scale are getting swapped.