Hi,
I'm creating an action to make a wheel spin like this:
id oneSpin = [RotateBy actionWithDuration:3 angle: 360];
id severalSpins = [Repeat actionWithAction:oneSpin times:10];
[severalSpins setTag: kSpinAction];
[aWheel runAction:severalSpins];
then if I want to stop it before it is scheduled, I will usually use a method that will do something like this:
id severalSpins = [aWheel getActionByTag:kSpinAction];
[aWheel stopAction:severalSpins];
but, what if I want to decelerate the stopping of the wheel?
I'm trying by first stoping "severalSpins" action and then launching ease actions with no success.
Any ideas guys?
Thxs.