Want to Animate a Component both Rotate and Along Y Axis, But Move Y is delayed!

So I am using the following OnClick

AnimateSlow("Item1!Y",Item1!1Ax,Item1!1By);
AnimateSlow("Item1!RotX",Item2!Rot1Ax,Item2!Rot1Bx);
AnimateSlow("Item2!RotX",Item2!Rot2Ax,Item2!Rot2Bx);

Item 1 Rotates fine, but the move in Y comes in delayed. Any way to fix this?

use a time line (a number of steps) and reference the actions

animatecustom will give more control
animatecustom(“step”,3,0,0,0,100)
if(step<25, do_this, do_that)
if(and(step>25, step<75), do_this, do_that)
if(step>75, do_this, do_that)

Consider nesting, so parent moves whilst child spins

upload your DC for specific solution

1 Like