Is it something I'm doing wrong, or do algorithms just not work?
<image src="images\RightLeft.png" x="left" y="top" xOrigin="left" yOrigin="top" height="200" width="200" layer="5">
<onEnter>
<set duration="5">
<animate type="x" to="right" algorithm="easeoutexponential"/>
<animate type="xOrigin" to="right"/>
<animate type="y" to="bottom" algorithm="easeinexponential"/>
<animate type="yOrigin" to="bottom"/>
</set>
</onEnter>
To me, the above should move a 200px square from top left corner to bottom right over 5 seconds.
But using easeoutexponential on the "x" animation should make it shoot right then slow down severely near the end of the 5 seconds.
Using easeinexponential on the "y" animation should make it very slowly start moving down then increase speed severely near the end of the 5 seconds.
Desired result being the 200px box moves along an arc path, from top left corner to bottom right, and not just a straight line through the middle.
Actual result, the box moves in straight path corner to corner through the middle.
So is my code wrong somewhere?