lua - Corona SDK Easing outBounce -
I am having difficulty with Corona's change with ease.
Here's my code:
Transition time = 120 transition (New dot, {time = transition time, y = newDot.destination_y, transition = easing.outBounce}) Unfortunately, it does not really bounce at all. It seems I'm not sure if I'm doing something wrong or if there is a smooth transition before performing something easier. Any help would be appreciated!
Thank you!
I'm pretty sure that the transit API has never worked properly. What I always do, in this way make 2 transitions with a slight delay:
transition.to (newDot, {time = 80, y = newDot.destination_y - 50}) infection. Just working in just a few ways, just change the numbers according to your choice (new dot, {delay = 80, time = 40, y = newDot.destination_y})
Hopefully That it helps.
Comments
Post a Comment