transitions - can I change the speed that the display object is moved from the source to target in "transistion.to"?

Can I change the speed that the display object is moved from the source to target in “transition.to”?

That is if one is moving (transitioning) a display object from point A to point B, but you want the speed of which it is moved along this line to increase/decrease during the course of the transition, is there a way to do this?   If transition.to doesn’t support any thought on simplest way in LUA to do this?

Maybe something like this

[lua]

transition.to( myObject, { x = 320, y = 480, time = 800, transition=easing.inExpo } )

[/lua]

You should check out the various transition options on the doc page: http://docs.coronalabs.com/api/library/transition/to.html

thanks mpappas - I hadn’t picked up on this feature in the past when I’d been lookup up the transition api

Maybe something like this

[lua]

transition.to( myObject, { x = 320, y = 480, time = 800, transition=easing.inExpo } )

[/lua]

You should check out the various transition options on the doc page: http://docs.coronalabs.com/api/library/transition/to.html

thanks mpappas - I hadn’t picked up on this feature in the past when I’d been lookup up the transition api