Hello there!
I have some object (tree), and I need to bend it to left and right (with mouse or finger). I have a problem; when I bend it to the right, it's ok. But when I bend it to left, all goes wrong.
I simplified all project to exclude all interferences.
So, I have:
- bone sequence (4 bones);
- idle animation (1 frame) - no bend;
- left bend animation - 1 frame, 1 bone rotation;
- right bend animation - 1 frame, 1 bone rotation.
- controller in Unity, where I have idle and Blend tree (it has idle in a middle, left and tight).
So, I set bend to some value from -1 to 1, then activate transition.
"Right" side is allrignt. Rotation of the bone changes smoothly from 0 to some correct value.
"Left" side is broken. Rotation goes to some value (less then I need), then it start go back to 0... And suddenly jump to end correct value. And then I activate transition back to idle, rotation makes some move in opposite side (Like easetype InBack).
So: What is going on???
I made the problem less visible by setting Custom MixMode = AlwaysMix, but it is not solution, it is just masking the problev, and I dont understand why it is happened.
In real project I have another bad place in transitions, and root of that other problem also in left-right differences.
I tried make Unity object with unity animations (also 1 frame etc). It works fine! Spine object doesnt work fine.